Files
zellyy-finance/capacitor.config.ts

35 lines
727 B
TypeScript

import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.lovable.zellyfinance',
appName: '젤리의 적자탈출',
webDir: 'dist',
server: {
androidScheme: 'https',
iosScheme: 'https',
cleartext: true
},
plugins: {
SplashScreen: {
launchShowDuration: 3000,
launchAutoHide: true,
backgroundColor: "#FFFFFF",
androidSplashResourceName: "splash",
androidScaleType: "CENTER_CROP",
showSpinner: false,
splashFullScreen: false,
splashImmersive: false
},
Keyboard: {
resize: "body",
style: "dark",
resizeOnFullScreen: true
}
},
ios: {
scheme: "App"
}
};
export default config;