File tree Expand file tree Collapse file tree 3 files changed +242
-228
lines changed Expand file tree Collapse file tree 3 files changed +242
-228
lines changed Original file line number Diff line number Diff line change
1
+ import type { SidebarsConfig } from "@docusaurus/plugin-content-docs" ;
2
+
3
+ const cloudSidebar : SidebarsConfig = {
4
+ sidebar : [
5
+ {
6
+ type : "category" ,
7
+ label : "Managing your Team" ,
8
+ items : [
9
+ {
10
+ type : "autogenerated" ,
11
+ dirName : "cloud/dashboard" ,
12
+ } ,
13
+ ] ,
14
+ } ,
15
+ {
16
+ type : "category" ,
17
+ label : "Caching your Project Packages with Jetify Cache" ,
18
+ items : [
19
+ {
20
+ type : "autogenerated" ,
21
+ dirName : "cloud/cache" ,
22
+ } ,
23
+ ] ,
24
+ } ,
25
+ {
26
+ type : "category" ,
27
+ label : "Syncing and Managing Secrets with Jetify Secrets" ,
28
+ items : [
29
+ {
30
+ type : "autogenerated" ,
31
+ dirName : "cloud/secrets" ,
32
+ } ,
33
+ ] ,
34
+ } ,
35
+ {
36
+ type : "category" ,
37
+ label : "Deploying your Project with Jetify Deployments" ,
38
+ items : [
39
+ {
40
+ type : "autogenerated" ,
41
+ dirName : "cloud/deploys" ,
42
+ } ,
43
+ ] ,
44
+ } ,
45
+ {
46
+ type : "doc" ,
47
+ id : "cloud/faq" ,
48
+ } ,
49
+ ] ,
50
+ } ;
51
+
52
+ export default cloudSidebar . sidebar ;
You can’t perform that action at this time.
0 commit comments