33 lines
514 B
TypeScript
33 lines
514 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
modules: [
|
|
"@nuxt/eslint",
|
|
"@nuxt/ui",
|
|
"@nuxt/a11y",
|
|
"@nuxt/hints",
|
|
"@nuxt/image",
|
|
"@nuxt/test-utils",
|
|
],
|
|
|
|
devtools: {
|
|
enabled: true,
|
|
},
|
|
|
|
css: ["~/assets/css/main.css"],
|
|
|
|
routeRules: {
|
|
"/": { prerender: true },
|
|
},
|
|
|
|
compatibilityDate: "2025-01-15",
|
|
|
|
eslint: {
|
|
config: {
|
|
stylistic: {
|
|
commaDangle: "never",
|
|
braceStyle: "1tbs",
|
|
},
|
|
},
|
|
},
|
|
});
|