This commit is contained in:
archer
2023-07-26 22:07:00 +08:00
parent 8be1834cfb
commit cd2fd77df1
138 changed files with 12793 additions and 6 deletions

53
docSite/sidebars.js Normal file
View File

@@ -0,0 +1,53 @@
// @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 Settings',
link: {
type: 'generated-index'
},
items: [{ type: 'autogenerated', dirName: 'flow-settings' }]
},
{
type: 'category',
label: 'Other',
link: {
type: 'generated-index'
},
items: [{ type: 'autogenerated', dirName: 'other' }]
}
]
};
module.exports = sidebars;