-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
79 lines (76 loc) · 1.97 KB
/
Copy pathsidebars.js
File metadata and controls
79 lines (76 loc) · 1.97 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// @ts-check
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docsSidebar: [
{
type: 'category',
label: 'Getting Started',
collapsed: false,
items: [
'getting-started/introduction',
'getting-started/installation',
'getting-started/docker',
{
type: 'category',
label: 'More install options',
link: {type: 'doc', id: 'getting-started/install-options/index'},
items: [
'getting-started/install-options/pie',
'getting-started/install-options/binaries',
'getting-started/install-options/from-source',
'getting-started/install-options/windows',
],
},
'getting-started/quick-start',
'getting-started/configuration',
],
},
{
type: 'category',
label: 'User Guide',
collapsed: false,
items: [
'user-guide/breakpoints',
'user-guide/step-debugging',
'user-guide/inspect-variables',
'user-guide/watch-expressions',
'user-guide/logging',
'user-guide/error-handling',
],
},
{
type: 'category',
label: 'Reference',
collapsed: false,
items: [
'reference/cli-options',
'reference/environment-variables',
'reference/configuration-file',
'reference/debug-protocol',
],
},
{
type: 'category',
label: 'Integrations',
collapsed: false,
items: [
'integrations/ide-support',
'integrations/phpstorm',
'integrations/vs-code',
'integrations/neovim',
],
},
{
type: 'category',
label: 'Advanced',
collapsed: false,
items: [
'advanced/performance',
'advanced/remote-debugging',
'advanced/troubleshooting',
],
},
],
};
export default sidebars;