2021-04-16 08:08:23 -04:00
|
|
|
/**
|
|
|
|
|
* 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 can be generated from the filesystem, or explicitly defined here.
|
|
|
|
|
|
|
|
|
|
Create as many sidebars as you want.
|
|
|
|
|
*/
|
|
|
|
|
|
2021-10-16 02:25:24 -04:00
|
|
|
// @ts-check
|
|
|
|
|
|
|
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
|
|
|
const sidebars = {
|
2021-04-16 08:08:23 -04:00
|
|
|
// By default, Docusaurus generates a sidebar from the docs folder structure
|
|
|
|
|
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
|
|
|
|
|
|
|
|
|
|
// But you can create a sidebar manually
|
|
|
|
|
/*
|
|
|
|
|
tutorialSidebar: [
|
2022-09-02 07:05:04 -04:00
|
|
|
'intro',
|
|
|
|
|
'hello',
|
2021-04-07 12:28:06 -04:00
|
|
|
{
|
|
|
|
|
type: 'category',
|
2021-04-16 08:08:23 -04:00
|
|
|
label: 'Tutorial',
|
2022-09-02 07:05:04 -04:00
|
|
|
items: ['tutorial-basics/create-a-document'],
|
2021-04-07 12:28:06 -04:00
|
|
|
},
|
|
|
|
|
],
|
2021-04-16 08:08:23 -04:00
|
|
|
*/
|
2020-11-16 10:20:16 -05:00
|
|
|
};
|
2021-10-16 02:25:24 -04:00
|
|
|
|
2023-10-31 17:53:06 -04:00
|
|
|
export default sidebars;
|