Implement docs

This commit is contained in:
Mathias Wagner
2024-07-30 15:21:37 +02:00
parent 40b402a1c3
commit 73c7bc5e77
10 changed files with 8572 additions and 0 deletions

32
docs/app.config.ts Normal file
View File

@ -0,0 +1,32 @@
// 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
}
}
})