capacitor.config.ts 542 B

12345678910111213141516171819202122
  1. import { CapacitorConfig } from "@capacitor/cli";
  2. const config: CapacitorConfig = {
  3. appId: "io.freeshort.freeshort",
  4. appName: "FreeShort",
  5. webDir: "dist",
  6. bundledWebRuntime: true,
  7. server: {
  8. androidScheme: "https",
  9. cleartext: true,
  10. },
  11. android: {
  12. buildOptions: {
  13. keystorePath: "./android/zouma2024.keystore",
  14. keystorePassword: "3edc#EDC",
  15. keystoreAlias: "zouma",
  16. keystoreAliasPassword: "3edc#EDC",
  17. },
  18. },
  19. };
  20. export default config;