Files
ben-to/apps/mobile/capacitor.config.ts
2026-07-21 16:50:58 +02:00

13 lines
240 B
TypeScript

import type { CapacitorConfig } from "@capacitor/cli";
const config: CapacitorConfig = {
appId: "com.kazerlelutin.bento",
appName: "Bento",
webDir: "../web/dist",
server: {
androidScheme: "https"
}
};
export default config;