-
Notifications
You must be signed in to change notification settings - Fork 5
/
sidebars.js
60 lines (60 loc) · 1.47 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
module.exports = {
docs: [
'about',
{
type: 'category',
label: 'Reference',
collapsed: false,
link: { type: 'doc', id: 'reference/index' },
items: [
{
'create-frourio-app': ['reference/cfa/gui', 'reference/cfa/cui'],
},
'reference/aspida',
'reference/routing',
'reference/handler',
'reference/hooks',
'reference/additionalRequest',
'reference/responseSchema',
{
Validation: [
'reference/validation/automatic',
'reference/validation/zod',
'reference/validation/class-validator',
],
},
'reference/cli',
],
},
{
type: 'category',
label: 'Guide',
collapsed: false,
link: { type: 'doc', id: 'guide/index' },
items: [
'guide/migration',
'guide/entrypoint',
'guide/authentication',
'guide/cors-helmet',
'guide/error-handling',
'guide/dependency-injection',
{ 'Typed Pages Path': ['guide/pathpida/with-nextjs', 'guide/pathpida/with-nuxtjs'] },
{
'Deployments (CI/CD)': [
'guide/deployments/ci',
'guide/deployments/client',
'guide/deployments/server',
],
},
],
},
],
tutorial: [
'tutorial/welcome',
'tutorial/why-frourio',
'tutorial/preparation',
'tutorial/aspida',
'tutorial/frourio',
'tutorial/all-done',
],
};