43 lines
840 B
TypeScript
43 lines
840 B
TypeScript
export default defineAppConfig({
|
|
docus: {
|
|
title: 'Nuxt Mongoose',
|
|
description: 'A Nuxt module for simplifying the use of Mongoose in your project.',
|
|
image: '/cover.jpg',
|
|
socials: {
|
|
twitter: 'arash_sheyda',
|
|
github: 'arashsheyda/nuxt-mongoose',
|
|
},
|
|
github: {
|
|
dir: 'docs/content',
|
|
branch: 'main',
|
|
repo: 'nuxt-mongoose',
|
|
owner: 'arashsheyda',
|
|
edit: true,
|
|
},
|
|
aside: {
|
|
level: 0,
|
|
collapsed: false,
|
|
exclude: [],
|
|
},
|
|
main: {
|
|
padded: true,
|
|
fluid: true,
|
|
},
|
|
header: {
|
|
logo: true,
|
|
showLinkIcon: true,
|
|
exclude: [],
|
|
fluid: true,
|
|
},
|
|
footer: {
|
|
fluid: true,
|
|
iconLinks: [
|
|
{
|
|
href: 'https://nuxt.com',
|
|
icon: 'simple-icons:nuxtdotjs',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
})
|