42 lines
911 B
TypeScript
42 lines
911 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'com.bestream.app',
|
|
appName: 'beStream',
|
|
webDir: 'dist',
|
|
server: {
|
|
androidScheme: 'https',
|
|
iosScheme: 'https',
|
|
// For development with live reload
|
|
// url: 'http://localhost:5173',
|
|
// cleartext: true,
|
|
},
|
|
plugins: {
|
|
StatusBar: {
|
|
style: 'DARK',
|
|
backgroundColor: '#141414',
|
|
},
|
|
SplashScreen: {
|
|
launchShowDuration: 2000,
|
|
launchAutoHide: true,
|
|
backgroundColor: '#141414',
|
|
androidSplashResourceName: 'splash',
|
|
androidScaleType: 'CENTER_CROP',
|
|
showSpinner: false,
|
|
},
|
|
},
|
|
android: {
|
|
allowMixedContent: true,
|
|
captureInput: true,
|
|
webContentsDebuggingEnabled: true,
|
|
},
|
|
ios: {
|
|
contentInset: 'automatic',
|
|
scrollEnabled: true,
|
|
limitsNavigationsToAppBoundDomains: false,
|
|
},
|
|
};
|
|
|
|
export default config;
|
|
|