2025-10-20 03:45:13 +00:00
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
|
export default defineNuxtConfig({
|
2025-10-20 05:26:17 +00:00
|
|
|
compatibilityDate: "2025-07-15",
|
|
|
|
|
|
|
|
|
|
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 },
|
|
|
|
|
|
|
|
|
|
modules: ["@nuxt/ui", "@nuxt/fonts"],
|
|
|
|
|
|
|
|
|
|
css: ["~/assets/css/main.css"],
|
|
|
|
|
|
|
|
|
|
fonts: {
|
|
|
|
|
priority: ["bunny", "google"],
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
ui: {
|
|
|
|
|
colorMode: false,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// deploy cloudflare
|
|
|
|
|
nitro: {
|
|
|
|
|
prerender: {
|
|
|
|
|
autoSubfolderIndex: false,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
});
|