21 lines
467 B
TypeScript
21 lines
467 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: "2025-07-15",
|
|
devtools: { enabled: true },
|
|
app: {
|
|
head: {
|
|
link: [{ rel: "icon", type: "image/png", href: "/favicon.png" }],
|
|
},
|
|
},
|
|
modules: [
|
|
"@nuxt/content",
|
|
"@nuxt/eslint",
|
|
"@nuxt/image",
|
|
"@nuxt/scripts",
|
|
"@nuxtjs/tailwindcss",
|
|
"nuxtjs-naive-ui",
|
|
"@vueuse/nuxt",
|
|
"@eschricht/nuxt-color-mode",
|
|
],
|
|
});
|