mirror of
https://github.com/linkwarden/linkwarden.git
synced 2026-03-03 02:37:02 +00:00
20 lines
349 B
TypeScript
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;
|