74 lines
1.2 KiB
JavaScript
74 lines
1.2 KiB
JavaScript
// @ts-check
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
|
|
const sidebars = {
|
|
docsSidebar: [
|
|
"introduction",
|
|
{
|
|
type: "category",
|
|
label: "Getting Started",
|
|
collapsed: false,
|
|
items: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "getting-started",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Features",
|
|
items: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "features",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Customization",
|
|
items: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "customization",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Hub",
|
|
items: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "hub",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Advanced",
|
|
items: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "advanced",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Guides",
|
|
items: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "guides",
|
|
},
|
|
],
|
|
},
|
|
"troubleshooting",
|
|
"reference",
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|