-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapacitor.config.ts
More file actions
34 lines (31 loc) · 792 Bytes
/
Copy pathcapacitor.config.ts
File metadata and controls
34 lines (31 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'app.lovable.b23c6a1de3504cc9bfba3e402cc226bd',
appName: 'Trusty Bank Buddy',
webDir: 'dist',
server: {
url: 'https://b23c6a1d-e350-4cc9-bfba-3e402cc226bd.lovableproject.com?forceHideBadge=true',
cleartext: true
},
plugins: {
SplashScreen: {
launchShowDuration: 2000,
backgroundColor: '#1e40af',
showSpinner: false
},
StatusBar: {
style: 'dark',
backgroundColor: '#1e40af'
},
Haptics: {},
App: {
launchUrl: 'https://b23c6a1d-e350-4cc9-bfba-3e402cc226bd.lovableproject.com'
}
},
android: {
allowMixedContent: true,
captureInput: true,
webContentsDebuggingEnabled: true
}
};
export default config;