1234567891011121314151617181920 |
- import type { CapacitorConfig } from '@capacitor/cli';
- const config: CapacitorConfig = {
- appId: 'io.ionic.starter',
- appName: 'nova-live',
- webDir: 'www',
- cordova: {
- preferences: {
- ScrollEnabled: 'false',
- BackupWebStorage: 'none',
- SplashMaintainAspectRatio: 'true',
- FadeSplashScreenDuration: '300',
- SplashShowOnlyFirstTime: 'false',
- SplashScreen: 'screen',
- SplashScreenDelay: '3000'
- }
- }
- };
- export default config;
|