| 123456789101112 |
- import type { CapacitorConfig } from '@capacitor/cli';
- const config: CapacitorConfig = {
- appId: 'com.example.app',
- appName: 'mobile-auth-web-app',
- webDir: 'dist/mobile-auth-web-app/browser',
- server: {
- androidScheme: 'http', // make sure this is not forcing HTTPS
- },
- };
- export default config;
|