| 12345678910111213141516 |
- import { CapacitorConfig } from '@capacitor/cli';
- const config: CapacitorConfig = {
- appId: 'com.caner.test2',
- appName: 'test2',
- webDir: 'dist',
- bundledWebRuntime: false,
- plugins: {
- // 高德地图使用无法显示
- // CapacitorHttp: {
- // enabled: true
- // }
- }
- };
- export default config;
|