28 lines
599 B
TypeScript
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;
|