Files
linkwarden/capacitor.config.ts
T
daniel31x13 b7656a3afc minor change
2024-01-12 16:00:02 -05:00

20 lines
355 B
TypeScript

import { CapacitorConfig } from "@capacitor/cli";
const config: CapacitorConfig = {
appId: "com.example.app",
appName: "linkwarden",
webDir: "out",
server: {
androidScheme: "https",
// url: "http://localhost:3000",
// cleartext: true,
},
plugins: {
CapacitorHttp: {
enabled: true,
},
},
};
export default config;