capacitor.config.ts 308 B

123456789101112
  1. import type { CapacitorConfig } from '@capacitor/cli';
  2. const config: CapacitorConfig = {
  3. appId: 'com.example.app',
  4. appName: 'mobile-auth-web-app',
  5. webDir: 'dist/mobile-auth-web-app/browser',
  6. server: {
  7. androidScheme: 'http', // make sure this is not forcing HTTPS
  8. },
  9. };
  10. export default config;