forked from neutralinojs/neutralinojs.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
43 lines (43 loc) · 934 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module.exports = {
docs: [
{
type: 'category',
label: 'Getting Started',
items: [
'getting-started/introduction',
'getting-started/your-first-neutralinojs-app',
],
},
{
type: 'category',
label: 'Native API',
items: [
'api/app',
'api/filesystem',
'api/os',
'api/computer',
'api/storage',
'api/debug',
],
},
{
type: 'category',
label: 'Developer Environment',
items: [
'developer-environment/neutralino.config.json',
'developer-environment/project-structure',
'developer-environment/cli',
'developer-environment/global-variables',
'developer-environment/modes',
],
},
{
type: 'category',
label: 'Community',
items: [
'community/committers',
'community/developer-support',
],
},
],
};