nostrudel/capacitor.config.ts
hzrd149 0214b69bc7 setup bakery services and views
setup capacitor
2025-01-14 19:57:32 -06:00

22 lines
368 B
TypeScript

import type { CapacitorConfig } from "@capacitor/cli";
const config: CapacitorConfig = {
appId: "ninja.nostrudel",
appName: "noStrudel",
webDir: "dist",
backgroundColor: "171819",
android: {
allowMixedContent: true,
},
server: {
cleartext: true,
},
plugins: {
CapacitorHttp: {
enabled: true,
},
},
};
export default config;