18 lines
380 B
TypeScript
18 lines
380 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
devtools: { enabled: true },
|
|
modules: ['@nuxt/content', '@nuxtjs/tailwindcss'],
|
|
content: {
|
|
// https://content.nuxtjs.org/api/configuration
|
|
highlight: {
|
|
theme: 'github-dark'
|
|
},
|
|
markdown: {
|
|
toc: {
|
|
depth: 3,
|
|
searchDepth: 3
|
|
}
|
|
}
|
|
}
|
|
})
|