sidebars.js 727 B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * Creating a sidebar enables you to:
  3. - create an ordered group of docs
  4. - render a sidebar for each doc of that group
  5. - provide next/previous navigation
  6. The sidebars can be generated from the filesystem, or explicitly defined here.
  7. Create as many sidebars as you want.
  8. */
  9. // @ts-check
  10. /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
  11. const sidebars = {
  12. // By default, Docusaurus generates a sidebar from the docs folder structure
  13. tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
  14. // But you can create a sidebar manually
  15. /*
  16. tutorialSidebar: [
  17. {
  18. type: 'category',
  19. label: 'Tutorial',
  20. items: ['hello'],
  21. },
  22. ],
  23. */
  24. };
  25. module.exports = sidebars;