20 lines
282 B
TypeScript
20 lines
282 B
TypeScript
export default defineNuxtConfig({
|
|
extends: '@nuxt-themes/docus',
|
|
|
|
app: {
|
|
head: {
|
|
link: [
|
|
{
|
|
rel: 'icon',
|
|
type: 'image/x-icon',
|
|
href: '/mongoose-icon.svg',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
|
|
modules: [
|
|
'@nuxthq/studio',
|
|
],
|
|
})
|