forked from XYOracleNetwork/web-xyo.network-docusaurus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.ts
30 lines (28 loc) · 774 Bytes
/
sidebars.ts
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
30
import { SidebarsConfig } from '@docusaurus/plugin-content-docs'
const sidebars: SidebarsConfig = {
// By default, Docusaurus generates a sidebar from the docs folder structure
rootSidebar: [
{ id: 'index', type: 'doc' },
{
id: 'getting-started/index',
type: 'doc',
},
{
items: [{ dirName: 'using-xyo', type: 'autogenerated' }],
label: 'Using XYO',
link: { id: 'using-xyo/index', type: 'doc' },
type: 'category',
},
{
items: [{ dirName: 'developing-with-xyo', type: 'autogenerated' }],
label: 'Developing with XYO',
link: { id: 'developing-with-xyo/index', type: 'doc' },
type: 'category',
},
{
id: 'glossary',
type: 'doc',
},
],
}
module.exports = sidebars