-
Notifications
You must be signed in to change notification settings - Fork 0
/
doczrc.js
80 lines (80 loc) · 1.54 KB
/
doczrc.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
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
export default {
typescript: true,
files: './**/*.mdx',
title: 'Sigi framework document',
dest: 'public',
themeConfig: {
colors: {
header: {
bg: '#ffd54f',
},
},
styles: {
inlineCode: {
color: 'hotpink',
},
},
},
menu: [
'Introduction',
{
name: 'Basic',
menu: [
'Concept',
{
name: 'Action',
route: '/en/basic/action',
},
{
name: 'Effects',
route: '/en/basic/effects',
},
{
name: 'Dependencies Injection',
route: '/en/basic/dependencies-injection',
},
],
},
{
name: 'Recipes',
menu: [
'Cancellation',
'Loading/Error states handling',
'StateSelector',
'Dependencies Replacement',
'Adding new EffectModule asynchronously',
'Writing tests',
],
},
{
name: 'FAQ',
route: '/en/faq',
},
{
name: '基本概念',
menu: [
'概念',
{
name: 'Action',
route: '/zh/basic/action',
},
{
name: 'Effects',
route: '/zh/basic/effects',
},
{
name: '依赖注入',
route: '/zh/basic/dependencies-injection',
},
],
},
{
name: '深入',
menu: ['取消', '处理 Loading/Error 状态', 'StateSelector', '依赖替换', 'Module 异步加载', '测试'],
},
{
name: '常见问题',
route: '/zh/faq',
},
],
}