feat(umami): setup
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m9s

This commit is contained in:
2026-02-27 19:40:15 +01:00
parent e87f19e7ce
commit 49ffa07af3
5 changed files with 51 additions and 13 deletions

View File

@@ -2,7 +2,7 @@
export default defineNuxtConfig({
compatibilityDate: "2024-11-01",
devtools: { enabled: true },
modules: ["@nuxt/eslint", "@nuxt/ui", "@nuxt/image"],
modules: ["@nuxt/eslint", "@nuxt/ui", "@nuxt/image", "nuxt-umami"],
css: ["~/assets/css/main.css"],
components: [
{
@@ -10,4 +10,10 @@ export default defineNuxtConfig({
pathPrefix: false,
},
],
umami: {
host: process.env.UMAMI_HOST ?? "",
id: process.env.UMAMI_ID ?? "",
autoTrack: true,
ignoreLocalhost: true,
},
});