Files
changelog-artsite/nuxt.config.ts
ArthurDanjou fcb9162017 Initial commit
Created from https://vercel.com/new
2025-09-06 14:11:17 +00:00

51 lines
758 B
TypeScript

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
modules: [
'@nuxt/eslint',
'@nuxt/ui',
'@nuxtjs/mdc'
],
devtools: {
enabled: true
},
css: ['~/assets/css/main.css'],
mdc: {
highlight: {
langs: ['diff', 'ts', 'vue', 'css']
},
remarkPlugins: {
'remark-github': {
options: {
repository: 'nuxt-ui-templates/changelog'
}
}
}
},
ui: {
theme: {
defaultVariants: {
color: 'neutral'
}
}
},
routeRules: {
'/': { prerender: true }
},
compatibilityDate: '2025-01-15',
eslint: {
config: {
stylistic: {
commaDangle: 'never',
braceStyle: '1tbs'
}
}
}
})