-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsidebars.js
More file actions
20 lines (17 loc) · 794 Bytes
/
sidebars.js
File metadata and controls
20 lines (17 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
// Most of these sidebars are automated.
// Each category is controlled by a "_category_.json" file in their respective directory.
// Individual category and page ordering is alphabetical by default but can be changed via their metadata, which is not always necessary.
const sidebars = {
docs: [{ type: 'autogenerated', dirName: 'modules'}],
Reference: [{ type: 'autogenerated', dirName: 'reference'}],
Guides: [{ type: 'autogenerated', dirName: 'guides'}],
Commands: [{ type: 'autogenerated', dirName: 'commands'}],
Events: [
"events/main",
{Format: ["events/xml", "events/examples"],},
"events/teams",
],
Examples: [{type: 'autogenerated', dirName: 'examples'}],
};
export default sidebars;