Files
zellyy-finance/capacitor.config.ts
gpt-engineer-app[bot] d7e5c0bf48 Prepare for Capacitor integration
This commit prepares the codebase for potential integration with Capacitor to build a mobile application.
2025-03-14 14:01:18 +00:00

21 lines
456 B
TypeScript

import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'app.lovable.79bc38c3bdd04a7fb4db0ec501bdb94f',
appName: 'neumofinance',
webDir: 'dist',
server: {
url: 'https://79bc38c3-bdd0-4a7f-b4db-0ec501bdb94f.lovableproject.com?forceHideBadge=true',
cleartext: true
},
plugins: {
SplashScreen: {
launchShowDuration: 2000,
backgroundColor: "#f2f2f2"
}
}
};
export default config;