-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
117 lines (115 loc) · 2.85 KB
/
Copy pathsidebars.ts
File metadata and controls
117 lines (115 loc) · 2.85 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docs: [
{
type: 'category',
label: '介绍',
collapsed: false,
items: [
'intro/index',
'intro/why-leanclr',
'intro/features',
'intro/architecture',
'intro/editions',
'intro/compatibility',
'intro/roadmap',
],
},
{
type: 'category',
label: '快速开始',
items: [
'getting-started/prerequisites',
'getting-started/build-runtime',
'getting-started/run-demo',
'getting-started/lean-cli',
'getting-started/first-embed',
],
},
{
type: 'category',
label: '构建与集成',
items: [
'integration/project-structure',
'integration/embed-leanclr',
'integration/wasm',
'integration/output-layout',
'integration/scripts-reference',
],
},
{
type: 'category',
label: 'AOT 编译',
items: [
'aot/overview',
'aot/leanaot-tool',
'aot/workflow',
'aot/rule-file',
'aot/pgo',
'aot/community-vs-commercial',
'aot/cli-reference',
],
},
{
type: 'category',
label: '互操作',
items: ['interop/custom-pinvoke', 'interop/pinvoke-samples'],
},
{
type: 'category',
label: '引擎生态',
collapsed: false,
link: {type: 'doc', id: 'ecosystem/index'},
items: [
{
type: 'category',
label: 'Unity',
link: {type: 'doc', id: 'ecosystem/unity/index'},
items: [
'ecosystem/unity/requirements',
'ecosystem/unity/install',
'ecosystem/unity/concepts',
'ecosystem/unity/settings',
'ecosystem/unity/build',
'ecosystem/unity/lazy-load',
'ecosystem/unity/hot-update',
'ecosystem/unity/pgo',
'ecosystem/unity/win64-notes',
'ecosystem/unity/troubleshooting',
'ecosystem/unity/internals',
],
},
'ecosystem/godot/index',
'ecosystem/unreal/index',
'ecosystem/cocos/index',
],
},
{
type: 'category',
label: '示例',
items: ['samples/index', 'samples/startup', 'samples/external-demos'],
},
{
type: 'category',
label: '开发与贡献',
items: [
'development/testing',
'development/test-framework',
'development/contributing',
'development/dev-scripts',
],
},
{
type: 'category',
label: '参考',
items: [
'reference/glossary',
'reference/faq',
'reference/environment-variables',
'reference/related-projects',
'reference/community',
],
},
],
};
export default sidebars;