Files
healer-man/capacitor.config.ts
2026-08-14 15:56:39 -04:00

16 lines
348 B
TypeScript

import type { CapacitorConfig } from "@capacitor/cli";
const config: CapacitorConfig = {
appId: "com.phenomrom.healerman",
appName: "Healer Man",
webDir: "dist-android",
android: {
backgroundColor: "#030706",
allowMixedContent: false,
captureInput: true,
webContentsDebuggingEnabled: false,
},
};
export default config;