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