Files
zellyy-finance/capacitor.config.ts
gpt-engineer-app[bot] 0e714af410 Implement splash screen functionality
Adds a splash screen to improve the app's initial loading experience.
2025-03-16 12:18:48 +00:00

41 lines
1012 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: 3000, // 스플래시 화면 표시 시간 3초로 증가
backgroundColor: "#F0F4F8", // 배경색 밝은 회색으로 변경
androidScaleType: "CENTER_CROP",
showSpinner: true, // 로딩 스피너 표시
spinnerColor: "#6BCB77", // 스피너 색상 (브랜드 색상)
androidSpinnerStyle: "large" // 안드로이드 스피너 크기
},
Keyboard: {
resize: "body",
style: "dark",
resizeOnFullScreen: true
}
},
android: {
buildOptions: {
keystorePath: "",
keystoreAlias: "",
releaseType: "AAB"
}
},
ios: {
scheme: "젤리의적자탈출",
contentInset: "automatic"
}
};
export default config;