39 lines
752 B
TypeScript
39 lines
752 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: 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;
|