mirror of
https://github.com/gnmyt/LicenseAPI.git
synced 2026-01-09 09:41:48 +00:00
33 lines
631 B
TypeScript
33 lines
631 B
TypeScript
// https://github.com/nuxt-themes/docus/blob/main/nuxt.schema.ts
|
|
export default defineAppConfig({
|
|
docus: {
|
|
title: "LicenseAPI",
|
|
description: "The best place to start your documentation.",
|
|
socials: {
|
|
github: "gnmyt/LicenseAPI"
|
|
},
|
|
github: {
|
|
dir: "docs/content",
|
|
branch: "main",
|
|
repo: "LicenseAPI",
|
|
owner: "gnmyt",
|
|
edit: true
|
|
},
|
|
aside: {
|
|
level: 0,
|
|
collapsed: false,
|
|
exclude: []
|
|
},
|
|
main: {
|
|
padded: true,
|
|
fluid: true
|
|
},
|
|
header: {
|
|
logo: true,
|
|
showLinkIcon: true,
|
|
exclude: [],
|
|
fluid: true
|
|
}
|
|
}
|
|
})
|