2023-04-08 06:07:04 +00:00
|
|
|
import { CapacitorConfig } from "@capacitor/cli";
|
2023-04-02 16:40:45 +00:00
|
|
|
|
|
|
|
const config: CapacitorConfig = {
|
2023-04-08 06:07:04 +00:00
|
|
|
appId: "org.calckey.app",
|
|
|
|
appName: "Calckey",
|
|
|
|
webDir: "../../built/_client_dist_",
|
|
|
|
bundledWebRuntime: false,
|
2023-04-02 16:40:45 +00:00
|
|
|
plugins: {
|
2023-04-08 06:07:04 +00:00
|
|
|
PushNotifications: {
|
|
|
|
presentationOptions: ["badge", "sound", "alert"],
|
|
|
|
},
|
|
|
|
},
|
2023-04-02 16:40:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|