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;