Replace Google analytics with Umami analytics

This commit is contained in:
Dave Gallant
2025-01-12 12:29:00 -05:00
parent 7dc8d88c5a
commit c332d7b0f2
4 changed files with 2438 additions and 1956 deletions

View File

@@ -1,6 +1,5 @@
import { createApp } from "vue";
import App from "./App.vue";
import VueGtag from "vue-gtag";
import { createRouter, createWebHashHistory } from "vue-router";
import "bootstrap/dist/css/bootstrap.min.css";
@@ -15,9 +14,7 @@ const router = createRouter({
routes,
});
const app = createApp(App).use(VueGtag, {
config: { id: "G-YF11ZH9SYD" },
});
const app = createApp(App);
app.use(router);
app.mount("#app");