BillTracker/mobile/capacitor.config.ts

18 lines
407 B
TypeScript
Raw Normal View History

import type { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
appId: 'com.billtracker.app',
appName: 'Bill Tracker',
webDir: 'dist',
android: {
// Allow HTTP (cleartext) for local network servers
allowMixedContent: true,
},
server: {
// androidScheme must be https for cookies to work correctly
androidScheme: 'https',
},
};
export default config;