Files
SIB/frontend/capacitor.config.ts

30 lines
600 B
TypeScript

import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.sibu.app',
appName: 'SIBU',
webDir: 'dist',
server: {
androidScheme: 'http',
cleartext: true
},
android: {
allowMixedContent: false,
},
plugins: {
SplashScreen: {
launchShowDuration: 2000,
launchAutoHide: true,
backgroundColor: "#101820",
androidSplashResourceName: "splash",
androidScaleType: "CENTER_CROP",
showSpinner: false,
},
Geolocation: {
androidUsePreciseLocation: true
}
}
};
export default config;