qortal-mobile/capacitor.config.ts

28 lines
622 B
TypeScript
Raw Normal View History

2024-10-28 05:19:07 +02:00
import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
2024-11-04 11:30:08 +02:00
appId: 'com.github.Qortal.qortalMobile',
appName: 'Qortal Go',
2024-10-31 08:56:21 +02:00
webDir: 'dist',
"plugins": {
"LocalNotifications": {
"smallIcon": "qort",
2024-11-04 11:30:08 +02:00
"iconColor": "#ffffff"
},
"SplashScreen": {
"launchShowDuration": 3000,
"backgroundColor": "#ffffff",
"androidScaleType": "FIT_XY",
"showSpinner": true,
"androidSpinnerStyle": "large",
"splashFullScreen": true,
"splashImmersive": true
2024-11-13 23:24:12 +02:00
},
CapacitorHttp: {
enabled: true,
2024-10-31 08:56:21 +02:00
}
}
2024-10-28 05:19:07 +02:00
};
export default config;