capacitor.config.ts 205 B

12345678910
  1. import { CapacitorConfig } from '@capacitor/cli';
  2. const config: CapacitorConfig = {
  3. appId: 'sgc.mobile',
  4. appName: 'SGC Mobile',
  5. webDir: 'dist',
  6. bundledWebRuntime: false
  7. };
  8. export default config;