16 lines
346 B
TypeScript
16 lines
346 B
TypeScript
import type { CapacitorConfig } from "@capacitor/cli";
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: "com.phenomrom.iwanttoheal",
|
|
appName: "I Want To Heal",
|
|
webDir: "dist",
|
|
android: {
|
|
backgroundColor: "#030706",
|
|
allowMixedContent: false,
|
|
captureInput: true,
|
|
webContentsDebuggingEnabled: false,
|
|
},
|
|
};
|
|
|
|
export default config;
|