53 lines
851 B
JavaScript
53 lines
851 B
JavaScript
/**
|
|
* Creating a sidebar enables you to:
|
|
- create an ordered group of docs
|
|
- render a sidebar for each doc of that group
|
|
- provide next/previous navigation
|
|
|
|
The sidebars are explicitly defined here.
|
|
|
|
Create as many sidebars as you want.
|
|
*/
|
|
|
|
// @ts-check
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
const sidebars = {
|
|
guidesSidebar: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "guides",
|
|
},
|
|
],
|
|
|
|
developerSidebar: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "developer",
|
|
},
|
|
],
|
|
|
|
docsSidebar: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "docs",
|
|
},
|
|
],
|
|
|
|
aboutSidebar: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "about",
|
|
},
|
|
],
|
|
|
|
postmortemSidebar: [
|
|
{
|
|
type: "autogenerated",
|
|
dirName: "postmortem",
|
|
},
|
|
],
|
|
};
|
|
|
|
module.exports = sidebars;
|