capacitor.config.ts 187 B

123456789
  1. import type { CapacitorConfig } from '@capacitor/cli';
  2. const config: CapacitorConfig = {
  3. appId: 'com.example.app',
  4. appName: 'my-vue-app',
  5. webDir: 'dist'
  6. };
  7. export default config;