import type { CapacitorConfig } from "@capacitor/cli"; const config: CapacitorConfig = { appId: "de.hamm.hankan", appName: "Hankan", webDir: "dist", // Everything ships in the bundle, so there is no server to point at. android: { // The on-screen 한글 keyboard sits under the input; resize rather than // pan so it is never covered. adjustMarginsForEdgeToEdge: "auto", }, plugins: { CapacitorSQLite: { androidIsEncryption: false, }, Keyboard: { resize: "body", }, }, }; export default config;