sidebars.js 699 B

123456789101112131415161718192021222324252627
  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. module.exports = {
  10. // By default, Docusaurus generates a sidebar from the docs folder structure
  11. basics: [{ type: 'autogenerated', dirName: 'basics' }],
  12. commands: [{ type: 'autogenerated', dirName: 'commands' }],
  13. // But you can create a sidebar manually
  14. /*
  15. tutorialSidebar: [
  16. {
  17. type: 'category',
  18. label: 'Tutorial',
  19. items: ['hello'],
  20. },
  21. ],
  22. */
  23. };