Files
goldenChart/app/capacitor.config.ts
T
2026-05-28 14:44:19 +09:00

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;