This commit is contained in:
talorr
2026-03-27 03:36:08 +03:00
parent 8a97ce6d54
commit cda36918e8
225 changed files with 35641 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
import type { CapacitorConfig } from "@capacitor/cli";
const config: CapacitorConfig = {
appId: "com.alpinbet.app",
appName: "Антигол",
webDir: ".output/public",
bundledWebRuntime: false,
server: {
androidScheme: "https"
},
plugins: {
SplashScreen: {
launchAutoHide: true,
launchShowDuration: 0
},
PushNotifications: {
presentationOptions: ["badge", "sound", "alert"]
}
}
};
export default config;