No Description

capacitor.config.ts 278B

12345678910111213141516
  1. import { CapacitorConfig } from '@capacitor/cli';
  2. const config: CapacitorConfig = {
  3. appId: 'io.ionic.starter',
  4. appName: 'kaceeapp7',
  5. webDir: 'dist',
  6. bundledWebRuntime: false,
  7. plugins: {
  8. CapacitorHttp: {
  9. enabled: true,
  10. },
  11. },
  12. };
  13. export default config;