Files
zellyy-finance/capacitor.config.ts
gpt-engineer-app[bot] 19f68eed0a Fix: Address codebase error
2025-03-15 23:36:42 +00:00

39 lines
827 B
TypeScript

import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'app.lovable.79bc38c3bdd04a7fb4db0ec501bdb94f',
appName: '젤리의 적자탈출',
webDir: 'dist',
server: {
url: 'https://79bc38c3-bdd0-4a7f-b4db-0ec501bdb94f.lovableproject.com?forceHideBadge=true',
cleartext: true
},
plugins: {
SplashScreen: {
launchShowDuration: 2000,
backgroundColor: "#f2f2f2",
androidScaleType: "CENTER_CROP",
showSpinner: false
},
Keyboard: {
resize: "body",
style: "dark",
resizeOnFullScreen: true
}
},
android: {
buildOptions: {
keystorePath: "",
keystoreAlias: "",
releaseType: "AAB"
}
},
ios: {
scheme: "젤리의적자탈출",
contentInset: "automatic"
}
};
export default config;