17 lines
314 B
TypeScript
17 lines
314 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli';
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'cloud.molberg.hermesmobile',
|
|
appName: 'Hermes Mobile',
|
|
webDir: 'dist',
|
|
server: {
|
|
androidScheme: 'http',
|
|
cleartext: true,
|
|
},
|
|
android: {
|
|
allowMixedContent: true,
|
|
},
|
|
};
|
|
|
|
export default config;
|