Planungen android
All checks were successful
Deploy to production / deploy (push) Successful in 2m17s
All checks were successful
Deploy to production / deploy (push) Successful in 2m17s
This commit is contained in:
22
android/capacitor.config.ts
Normal file
22
android/capacitor.config.ts
Normal 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;
|
||||
Reference in New Issue
Block a user