Prepare for Capacitor integration

This commit prepares the codebase for potential integration with Capacitor to build a mobile application.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-14 14:01:18 +00:00
parent f7a818d1c6
commit d7e5c0bf48
4 changed files with 1074 additions and 16 deletions

20
capacitor.config.ts Normal file
View File

@@ -0,0 +1,20 @@
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;