-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsidebars.js
30 lines (28 loc) · 910 Bytes
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
// {
// type: 'category',
// label: 'Hackathons',
// items: [
// {
// type: 'category',
// label: 'Current Hackathons',
// items: ['hackathons/Current/eth-denver-hackathon'], // Path from the 'docs' directory, without the file extension
// },
// {
// type: 'category',
// label: 'Previous Hackathons',
// items: ['hackathons/Previous/eth-lisbon-hackathon'], // Path from the 'docs' directory, without the file extension
// },
// ],
// },
// Other sidebar items or categories
{
type: 'autogenerated',
dirName: '.', // Automatically generate the rest of the sidebar based on the docs folder structure
},
],
};
export default sidebars;