Files
hermes-mobile/apps/mobile/capacitor.config.ts
T
2026-07-09 04:43:00 +00:00

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;