import { CapacitorConfig } from '@capacitor/cli'; const config: CapacitorConfig = { appId: 'app.timesafari', appName: 'TimeSafari', webDir: 'dist', bundledWebRuntime: false, server: { cleartext: true, }, plugins: { App: { appUrlOpen: { handlers: [ { url: "timesafari://*", autoVerify: true } ] } }, MLKitBarcodeScanner: { formats: ['QR_CODE'], // Only enable QR code scanning to improve performance detectorSize: 1.0, // Use full camera view for detection lensFacing: 'back', // Default to back camera googleBarcodeScannerModuleInstallState: true // Enable Google Play Services barcode module installation if needed } } }; export default config;