import { CapacitorConfig } from "@capacitor/cli"; const config: CapacitorConfig = { appId: "com.zellyy.finance.dev", appName: "Zellyy Finance (Dev)", webDir: "dist", server: { androidScheme: "https", iosScheme: "https", cleartext: true, }, plugins: { SplashScreen: { launchShowDuration: 1500, launchAutoHide: true, backgroundColor: "#FEF3C7", androidSplashResourceName: "splash", androidScaleType: "CENTER_CROP", showSpinner: false, splashFullScreen: true, splashImmersive: true, }, Keyboard: { resize: "body", style: "dark", resizeOnFullScreen: true, }, }, ios: { scheme: "ZellyyFinanceDev", contentInset: "automatic", }, android: { allowMixedContent: true, }, }; export default config;