capacitor.config.ts 473 B

1234567891011121314151617181920
  1. import type { CapacitorConfig } from '@capacitor/cli';
  2. const config: CapacitorConfig = {
  3. appId: 'io.ionic.starter',
  4. appName: 'nova-live',
  5. webDir: 'www',
  6. cordova: {
  7. preferences: {
  8. ScrollEnabled: 'false',
  9. BackupWebStorage: 'none',
  10. SplashMaintainAspectRatio: 'true',
  11. FadeSplashScreenDuration: '300',
  12. SplashShowOnlyFirstTime: 'false',
  13. SplashScreen: 'screen',
  14. SplashScreenDelay: '3000'
  15. }
  16. }
  17. };
  18. export default config;