diff --git a/app/app.vue b/app/app.vue index 69bf52f..cea50e7 100644 --- a/app/app.vue +++ b/app/app.vue @@ -20,17 +20,6 @@ onMounted(() => paletteStore.applyToDOM()) const config = useRuntimeConfig() const siteUrl = (config.public.siteUrl as string) || 'https://librodrome.org' -// Umami analytics — inject script only when configured -if (config.public.umamiWebsiteId && config.public.umamiUrl) { - useHead({ - script: [{ - src: `${config.public.umamiUrl}/script.js`, - defer: true, - 'data-website-id': config.public.umamiWebsiteId, - }], - }) -} - // Global SEO defaults — surchargeables page par page via useSeoPage() useHead({ titleTemplate: (title) => title ? `${title} — Le Librodrome` : 'Le Librodrome', diff --git a/app/components/layout/TheHeader.vue b/app/components/layout/TheHeader.vue index 77585e2..d185516 100644 --- a/app/components/layout/TheHeader.vue +++ b/app/components/layout/TheHeader.vue @@ -3,13 +3,21 @@