mirror of
https://github.com/m1k1o/neko.git
synced 2025-07-28 14:08:29 +02:00
update docs.
This commit is contained in:
parent
6f3760e5b9
commit
e3cdad3f81
41 changed files with 213 additions and 198 deletions
|
@ -1,4 +1,5 @@
|
|||
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
||||
import apiSidebar from './docs/api/sidebar';
|
||||
|
||||
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
|
||||
|
||||
|
@ -17,45 +18,50 @@ const sidebars: SidebarsConfig = {
|
|||
{
|
||||
type: 'category',
|
||||
label: 'Getting Started',
|
||||
className: 'menu__list-item-flat',
|
||||
collapsible: false,
|
||||
items: [{ type: "autogenerated", dirName: "getting-started" }]
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'User Guide',
|
||||
items: [{ type: "autogenerated", dirName: "user-guide" }]
|
||||
label: 'Reference',
|
||||
className: 'menu__list-item-flat',
|
||||
collapsible: false,
|
||||
items: [
|
||||
{ type: "autogenerated", dirName: "reference" },
|
||||
{
|
||||
type: 'link',
|
||||
label: 'API Reference',
|
||||
href: '/docs/v3/api',
|
||||
}
|
||||
]
|
||||
},
|
||||
//{
|
||||
// type: 'category',
|
||||
// label: 'Hardware Acceleration',
|
||||
// items: [{ type: "autogenerated", dirName: "hardware-acceleration" }]
|
||||
//},
|
||||
//{
|
||||
// type: 'category',
|
||||
// label: 'Application Customization',
|
||||
// items: [{ type: "autogenerated", dirName: "app-customization" }]
|
||||
//},
|
||||
//{
|
||||
// type: 'category',
|
||||
// label: 'Developer Guide',
|
||||
// items: [{ type: "autogenerated", dirName: "developer-guide" }]
|
||||
//},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Hardware Acceleration',
|
||||
items: [{ type: "autogenerated", dirName: "hardware-acceleration" }]
|
||||
label: 'Help & Support',
|
||||
className: 'menu__list-item-flat',
|
||||
collapsible: false,
|
||||
items: [
|
||||
'faq',
|
||||
'release-notes',
|
||||
'roadmap',
|
||||
]
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Application Customization',
|
||||
items: [{ type: "autogenerated", dirName: "app-customization" }]
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Advanced Topics',
|
||||
items: [{ type: "autogenerated", dirName: "advanced-topics" }]
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Developer Guide',
|
||||
items: [{ type: "autogenerated", dirName: "developer-guide" }]
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Deployment & Scaling',
|
||||
items: [{ type: "autogenerated", dirName: "deployment-and-scaling" }]
|
||||
},
|
||||
{
|
||||
type: 'category',
|
||||
label: 'Integration & Extensibility',
|
||||
items: [{ type: "autogenerated", dirName: "integration-and-extensibility" }]
|
||||
},
|
||||
'release-notes',
|
||||
'roadmap',
|
||||
],
|
||||
apiSidebar: require("./docs/api/sidebar.js"),
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue