39 lines
870 B
TypeScript
39 lines
870 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
content: {
|
|
experimental: { nativeSqlite: true },
|
|
build: {
|
|
markdown: {
|
|
// Object syntax can be used to override default options
|
|
remarkPlugins: {
|
|
// Override remark-emoji options
|
|
'remark-emoji': {
|
|
options: {
|
|
emoticon: true
|
|
}
|
|
},
|
|
// Disable remark-gfm
|
|
'remark-gfm': false,
|
|
// Add remark-oembed
|
|
'remark-oembed': {
|
|
// Options
|
|
}
|
|
},
|
|
}
|
|
}
|
|
},
|
|
modules: [
|
|
'@nuxt/content',
|
|
'@nuxt/eslint',
|
|
'@nuxt/image',
|
|
'@nuxt/icon',
|
|
'@nuxt/fonts',
|
|
'@nuxt/scripts',
|
|
'nuxt-zod-i18n',
|
|
'@nuxtjs/i18n'
|
|
],
|
|
extends: ['docus']
|
|
})
|