-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
42 lines (42 loc) · 1.16 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
module.exports = {
someSidebar: {
Prism: [
{
type: "category",
label: "Http Gateway",
items: [
"prism/http/getting-started",
"prism/http/response-aggregation",
"prism/http/request-transform",
"prism/http/response-transform",
"prism/http/https-and-cors",
"prism/http/caching",
"prism/http/authentication",
"prism/http/rollback",
"prism/http/rate-limiting",
"prism/http/circuit-breaker",
"prism/http/load-balancing",
"prism/http/request-pipelining",
"prism/http/web-jobs",
"prism/http/streams",
"prism/http/cluster",
"prism/http/redis-web-backends",
"prism/http/releases",
],
collapsed: false,
},
{
type: "category",
label: "WebSocket Gateway",
items: [
"prism/webSocket/basics",
"prism/webSocket/authentication",
"prism/webSocket/terminating",
"prism/webSocket/request-transform",
],
collapsed: false,
},
],
More: ["more/contributing", "more/license"],
},
};