24 lines
487 B
TypeScript
24 lines
487 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.goldenchart.app',
|
|
appName: 'GoldenChart',
|
|
webDir: 'dist',
|
|
server: {
|
|
androidScheme: 'https',
|
|
iosScheme: 'capacitor',
|
|
},
|
|
plugins: {
|
|
SplashScreen: {
|
|
launchAutoHide: true,
|
|
backgroundColor: '#0f0f23',
|
|
showSpinner: false,
|
|
},
|
|
PushNotifications: {
|
|
presentationOptions: ['badge', 'sound', 'alert'],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|