Нет описания

capacitor.config.ts 293B

123456789101112131415161718
  1. import { CapacitorConfig } from '@capacitor/cli';
  2. const config: CapacitorConfig = {
  3. appId: 'net.simplico.tmtlive',
  4. appName: 'TMTApp',
  5. webDir: 'dist',
  6. server: {
  7. androidScheme: 'https'
  8. },
  9. plugins: {
  10. CapacitorHttp: {
  11. enabled: true
  12. },
  13. }
  14. };
  15. export default config;