23 lines
426 B
TypeScript
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;
|