mirror of
https://github.com/ArthurDanjou/changelog-artsite.git
synced 2026-01-14 12:14:34 +01:00
51 lines
758 B
TypeScript
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'
|
|
}
|
|
}
|
|
}
|
|
})
|