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;