34 lines
647 B
TypeScript
34 lines
647 B
TypeScript
export default defineNuxtConfig({
|
|
compatibilityDate: "2025-07-15",
|
|
|
|
modules: ["@nuxt/ui", "@nuxt/fonts", "nuxt-umami"],
|
|
|
|
app: {
|
|
head: {
|
|
title: "Estúdio AANY", // default fallback title
|
|
htmlAttrs: {
|
|
lang: "pt-br",
|
|
},
|
|
link: [{ rel: "icon", type: "image/ong", href: "/favicon.png" }],
|
|
},
|
|
},
|
|
|
|
devtools: { enabled: true },
|
|
|
|
css: ["~/assets/css/main.css"],
|
|
|
|
fonts: {
|
|
priority: ["bunny", "google"],
|
|
},
|
|
|
|
ui: {
|
|
colorMode: false,
|
|
},
|
|
|
|
umami: {
|
|
id: "fd7501ea-3aa8-4ef5-ae8f-3b2c0e6544e4",
|
|
host: "https://umami.estudioaany.com.br/",
|
|
autoTrack: true,
|
|
proxy: false,
|
|
},
|
|
});
|