capacitor.config.ts 317 B

12345678910111213141516
  1. import { CapacitorConfig } from '@capacitor/cli';
  2. const config: CapacitorConfig = {
  3. appId: 'com.caner.test2',
  4. appName: 'test2',
  5. webDir: 'dist',
  6. bundledWebRuntime: false,
  7. plugins: {
  8. // 高德地图使用无法显示
  9. // CapacitorHttp: {
  10. // enabled: true
  11. // }
  12. }
  13. };
  14. export default config;