import type { CapacitorConfig } from '@capacitor/cli'; const config: CapacitorConfig = { appId: 'com.heychat.live', appName: 'hey聊', webDir: 'www', android: { buildOptions: { releaseType: 'APK', keystorePath: './heychat.keystore', keystorePassword: '12345678', keystoreAlias: 'heychat', keystoreAliasPassword: '12345678' } }, cordova: { preferences: { ScrollEnabled: 'false', BackupWebStorage: 'none', SplashMaintainAspectRatio: 'true', FadeSplashScreenDuration: '300', SplashShowOnlyFirstTime: 'false', SplashScreen: 'screen', SplashScreenDelay: '3000' } } }; export default config;