capacitor.config.ts 333 B

123456789101112131415
  1. import { CapacitorConfig } from "@capacitor/cli";
  2. const config: CapacitorConfig = {
  3. appId: "io.freeshort.freeshort",
  4. appName: "FreeShort",
  5. webDir: "dist",
  6. server: {
  7. androidScheme: "https",
  8. url: "http://192.168.50.202:4173",
  9. cleartext: true,
  10. },
  11. android: {},
  12. };
  13. export default config;