Files
zellyy-finance/capacitor.config.ts

43 lines
884 B
TypeScript

import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.lovable.zellyfinance',
appName: '젤리의 적자탈출',
webDir: 'dist',
server: {
url: 'https://zfinance.zellyy.com/',
cleartext: true
},
plugins: {
SplashScreen: {
launchShowDuration: 1000,
launchAutoHide: true,
androidSplashResourceName: "splash",
splashFullScreen: true,
splashImmersive: true,
showSpinner: false,
androidScaleType: "CENTER_INSIDE",
backgroundColor: "#FFFFFF"
},
Keyboard: {
resize: "body",
style: "dark",
resizeOnFullScreen: true
}
},
android: {
buildOptions: {
keystorePath: "",
keystoreAlias: "",
releaseType: "AAB"
}
},
ios: {
scheme: "젤리의적자탈출",
contentInset: "automatic"
}
};
export default config;