Files
linkwarden/capacitor.config.ts
T
2024-01-12 15:57:49 -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;