16 lines
348 B
TypeScript
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;
|