13 lines
240 B
TypeScript
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;
|