mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 12:20:34 +00:00
54 lines
1.1 KiB
JavaScript
54 lines
1.1 KiB
JavaScript
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
docSidebar: [
|
|
'intro',
|
|
{
|
|
type: 'category',
|
|
label: 'Quick Start',
|
|
link: {
|
|
type: 'generated-index'
|
|
},
|
|
collapsed: false,
|
|
items: [{ type: 'autogenerated', dirName: 'quick-start' }]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Deploy',
|
|
link: {
|
|
type: 'generated-index'
|
|
},
|
|
collapsed: false,
|
|
items: [{ type: 'autogenerated', dirName: 'deploy' }]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Datasets',
|
|
link: {
|
|
type: 'generated-index'
|
|
},
|
|
collapsed: false,
|
|
items: [{ type: 'autogenerated', dirName: 'datasets' }]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Flow Modules',
|
|
link: {
|
|
type: 'generated-index'
|
|
},
|
|
items: [{ type: 'autogenerated', dirName: 'flow-modules' }]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Other',
|
|
link: {
|
|
type: 'generated-index'
|
|
},
|
|
items: [{ type: 'autogenerated', dirName: 'other' }]
|
|
}
|
|
]
|
|
};
|
|
|
|
module.exports = sidebars;
|