diff --git a/.env.example b/.env.example index e1d4be1..ab3fd7f 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,5 @@ VITE_ENV="development" VITE_TELEGRAM_BOT_URL="" VITE_TELEGRAM_MANIFEST_URL="" -VITE_TON_CONTRACT_ADDRESS="" \ No newline at end of file +VITE_TON_CONTRACT_ADDRESS="" +VITE_GTAG_ID="" \ No newline at end of file diff --git a/.env.production b/.env.production index 47bba6e..d9a6a73 100644 --- a/.env.production +++ b/.env.production @@ -1,4 +1,5 @@ VITE_ENV="production" -VITE_TELEGRAM_BOT_URL="https://t.me/x2lotterybot" +VITE_TELEGRAM_BOT_URL="t.me/x2lotterybot/play" VITE_TELEGRAM_MANIFEST_URL="https://gradoally.github.io/x2lottery/tonconnect-manifest.json" VITE_TON_CONTRACT_ADDRESS="EQCnuaUFX1fxduNk5QvUMlexRmwHM08jfO5_zpQpkXjeWbL7" +VITE_GTAG_ID="G-0R6KDGMBJS" diff --git a/index.html b/index.html index 9612e01..f7cda8c 100644 --- a/index.html +++ b/index.html @@ -7,6 +7,22 @@ name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /> + + + + + x2Lottery diff --git a/src/App.vue b/src/App.vue index b1d22ce..63416fb 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,6 +3,7 @@ import { ref, computed, onMounted } from 'vue' import { useRouter } from 'vue-router' import { store } from './common/store' +import MoneyBackground from './components/common/MoneyBackground.vue'; const router = useRouter() @@ -21,6 +22,7 @@ onMounted(async () => {