Planungen android

This commit is contained in:
Torsten Schulz (local)
2026-07-08 22:28:51 +02:00
parent 244c95502a
commit d481cfd95c
90 changed files with 5901 additions and 42 deletions

View File

@@ -0,0 +1,22 @@
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;