-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebars.js
More file actions
38 lines (37 loc) · 1.15 KB
/
sidebars.js
File metadata and controls
38 lines (37 loc) · 1.15 KB
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
31
32
33
34
35
36
37
38
/**
* @type {import('@docusaurus/plugin-content-docs').SidebarsConfig}
*/
const sidebars = {
tutorialSidebar: [
{
type: 'doc',
id: 'overview',
label: 'Overview'
},
{
type: 'category',
label: 'How to use',
collapsible: true,
collapsed: false,
items: [
{ type: 'doc', id: 'howto/friend-howto', label: 'Friends Mode' },
{ type: 'doc', id: 'howto/java-howto', label: 'Java Mode' },
{ type: 'doc', id: 'howto/nintendo-howto', label: 'Nintendo Switch' },
{ type: 'doc', id: 'howto/playstation-xbox-howto', label: 'PlayStation & Xbox' },
],
},
{
type: 'category',
label: 'Common issues',
collapsible: true,
collapsed: false,
items: [
{ type: 'doc', id: 'issues/dns-issue', label: 'Nintendo DNS Not Working' },
{ type: 'doc', id: 'issues/does-not-appear-issue', label: 'MCCompanion Not Appearing' },
{ type: 'doc', id: 'issues/friend-issue', label: 'Friends Mode Not Working' },
{ type: 'doc', id: 'issues/mcf-issue', label: 'Multiplayer Connection Failed' },
],
},
],
};
export default sidebars;