Files
linkwarden/capacitor.config.ts
daniel31x13 90a3170ffd minor revert
2024-01-12 16:05:15 -05:00

20 lines
349 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;