mobile download

This commit is contained in:
Macbook
2026-05-28 14:44:19 +09:00
parent e2816b037f
commit 3503ef33f5
152 changed files with 11021 additions and 687 deletions
+23
View File
@@ -0,0 +1,23 @@
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;