nuxt-start/capacitor.config.ts
2025-12-23 19:51:09 +01:00

28 lines
599 B
TypeScript

import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'app.olcsoberauto.hu',
appName: 'Eurocars Rent A Car',
webDir: '.output/public',
plugins: {
SplashScreen: {
launchShowDuration: 2000,
launchAutoHide: false,
backgroundColor: '#262626',
androidScaleType: 'CENTER_CROP',
showSpinner: false,
splashFullScreen: true,
splashImmersive: true
},
StatusBar: {
style: 'DARK',
backgroundColor: '#262626'
}
},
android: {
backgroundColor: '#262626'
}
};
export default config;