This commit prepares the codebase for potential integration with Capacitor to build a mobile application.
21 lines
456 B
TypeScript
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;
|