2026-02-21 09:53:31 -05:00
|
|
|
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
|
|
|
|
|
|
const config: CapacitorConfig = {
|
|
|
|
|
appId: 'com.sibu.app',
|
|
|
|
|
appName: 'SIBU',
|
|
|
|
|
webDir: 'dist',
|
|
|
|
|
server: {
|
|
|
|
|
androidScheme: 'http',
|
|
|
|
|
cleartext: true
|
2026-02-26 12:50:12 -05:00
|
|
|
},
|
|
|
|
|
plugins: {
|
|
|
|
|
SplashScreen: {
|
|
|
|
|
launchShowDuration: 2000,
|
|
|
|
|
launchAutoHide: true,
|
|
|
|
|
backgroundColor: "#101820",
|
|
|
|
|
androidSplashResourceName: "splash",
|
|
|
|
|
androidScaleType: "CENTER_CROP",
|
|
|
|
|
showSpinner: false,
|
|
|
|
|
}
|
2026-02-21 09:53:31 -05:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default config;
|