Files
SIB/frontend/capacitor.config.ts

30 lines
600 B
TypeScript
Raw Normal View History

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
},
android: {
allowMixedContent: false,
},
2026-02-26 12:50:12 -05:00
plugins: {
SplashScreen: {
launchShowDuration: 2000,
launchAutoHide: true,
backgroundColor: "#101820",
androidSplashResourceName: "splash",
androidScaleType: "CENTER_CROP",
showSpinner: false,
},
Geolocation: {
androidUsePreciseLocation: true
2026-02-26 12:50:12 -05:00
}
2026-02-21 09:53:31 -05:00
}
};
export default config;