-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsidebars.js
121 lines (116 loc) · 2.71 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
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
118
119
120
121
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
{
"type": "category",
"label": "Introduction",
"collapsible": false,
"link": {
"type": "doc",
"id": "introduction/index"
},
"items": [
"introduction/v1-and-v2"
]
},
{
"type": "category",
"label": "Getting Started",
"link": {
"type": "doc",
"id": "getting-started/index"
},
"items": [
"getting-started/setup",
"getting-started/install",
"getting-started/verify"
]
},
{
"type": "category",
"label": "Widget SDK",
"link": {
"type": "doc",
"id": "sdk/index"
},
"items": [
"sdk/configuration",
"sdk/events",
"sdk/lifecycle",
{
"type": "category",
"label": "SDK Reference",
"link": {
"type": "doc",
"id": "sdk/reference/index"
},
"items": [{
"type": "autogenerated",
"dirName": "sdk/reference"
}]
}
]
},
{
"type": "category",
"label": "Server-side Validation",
"link": {
"type": "doc",
"id": "api/index"
},
"items": [
"api/authentication",
{
"type": "doc",
"id": "api/siteverify",
"label": "HTTP Endpoints"
}
]
},
{
"type": "category",
"label": "Guides",
"link": {
"type": "doc",
"id": "guides/index"
},
"items": [
"guides/automated-testing",
"guides/browser-support",
"guides/eu-endpoint",
"guides/localization",
"guides/csp",
{
"type": "category",
"label": "Upgrading from v1",
"link": {
"type": "doc",
"id": "guides/upgrading-from-v1/index"
},
"items": [
"guides/upgrading-from-v1/javascript-api",
"guides/upgrading-from-v1/script",
"guides/upgrading-from-v1/backend-integration"
]
},
"guides/migrating-from-recaptcha",
"guides/migrating-from-hcaptcha"
]
},
{
"type": "link",
"href": "https://github.com/FriendlyCaptcha/friendly-captcha-sdk/blob/main/CHANGELOG.md",
"label": "Changelog"
}
],
};
module.exports = sidebars;