Files
yourpart3/android/capacitor.config.ts
Torsten Schulz (local) 53becb6630
All checks were successful
Deploy to production / deploy (push) Successful in 2m17s
Planungen android
2026-07-08 22:28:51 +02:00

23 lines
426 B
TypeScript

import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'de.yourpart.app',
appName: 'YourPart',
webDir: '../frontend/dist',
bundledWebRuntime: false,
server: {
androidScheme: 'https'
},
plugins: {
SplashScreen: {
launchAutoHide: true
}
},
android: {
allowMixedContent: false,
webContentsDebuggingEnabled: true
}
};
export default config;