update docs.

This commit is contained in:
Miroslav Šedivý 2025-03-22 18:53:45 +01:00
parent 6f3760e5b9
commit e3cdad3f81
41 changed files with 213 additions and 198 deletions

View file

@ -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"),
};