43 lines
645 B
TypeScript
43 lines
645 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
modules: [
|
|
"@nuxt/eslint",
|
|
"@nuxt/image",
|
|
"@nuxt/ui",
|
|
"@nuxt/content",
|
|
"@vueuse/nuxt",
|
|
"nuxt-og-image",
|
|
"motion-v/nuxt",
|
|
],
|
|
|
|
devtools: {
|
|
enabled: true,
|
|
},
|
|
|
|
vite: {
|
|
optimizeDeps: {
|
|
exclude: ["@nuxtjs/mdc"],
|
|
},
|
|
},
|
|
|
|
css: ["~/assets/css/main.css"],
|
|
|
|
compatibilityDate: "2024-11-01",
|
|
|
|
nitro: {
|
|
prerender: {
|
|
routes: ["/"],
|
|
crawlLinks: true,
|
|
},
|
|
},
|
|
|
|
eslint: {
|
|
config: {
|
|
stylistic: {
|
|
commaDangle: "never",
|
|
braceStyle: "1tbs",
|
|
},
|
|
},
|
|
},
|
|
});
|