-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcapacitor.config.ts
More file actions
43 lines (41 loc) · 939 Bytes
/
capacitor.config.ts
File metadata and controls
43 lines (41 loc) · 939 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
35
36
37
38
39
40
41
42
43
import type { CapacitorConfig } from '@capacitor/cli'
const config: CapacitorConfig = {
appId: 'com.claw.control',
appName: 'ClawControl',
webDir: 'dist',
server: {
// Allow connections to any WebSocket server
allowNavigation: ['*']
},
plugins: {
SplashScreen: {
launchShowDuration: 0,
launchAutoHide: false,
backgroundColor: '#06080a',
showSpinner: false,
androidScaleType: 'CENTER_CROP',
splashImmersive: true
},
Keyboard: {
resize: 'none',
resizeOnFullScreen: true
},
StatusBar: {
style: 'DARK',
backgroundColor: '#06080a'
}
},
ios: {
contentInset: 'never',
backgroundColor: '#06080a',
scheme: 'ClawControl',
preferredContentMode: 'mobile'
},
android: {
backgroundColor: '#06080a',
allowMixedContent: true,
captureInput: true,
webContentsDebuggingEnabled: false
}
}
export default config