forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.ts
110 lines (106 loc) · 3.02 KB
/
sidebars.ts
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
/*!
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
* Licensed under the MIT License.
*/
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
/**
* Sidebar associated with `/docs`
*/
docsSidebar: [
{ type: "doc", id: "home" },
{
type: "category",
label: "Getting Started",
items: [{ type: "autogenerated", dirName: "start" }],
link: { type: "doc", id: "start/quick-start" },
},
{
type: "category",
label: "Build With Fluid",
items: [{ type: "autogenerated", dirName: "build" }],
link: { type: "doc", id: "build/overview" },
},
{
type: "category",
label: "Testing",
items: [{ type: "autogenerated", dirName: "testing" }],
link: { type: "doc", id: "testing/tinylicious" },
},
{
type: "category",
label: "Deployment",
items: [{ type: "autogenerated", dirName: "deployment" }],
link: { type: "doc", id: "deployment/service-options" },
},
{
type: "category",
label: "Data Structures",
items: [{ type: "autogenerated", dirName: "data-structures" }],
link: { type: "doc", id: "data-structures/overview" },
},
{
type: "category",
label: "Concepts",
items: [{ type: "autogenerated", dirName: "concepts" }],
link: { type: "doc", id: "concepts/architecture" },
},
{ type: "doc", id: "faq" },
{ type: "doc", id: "glossary" },
{
type: "link",
label: "Release Notes",
href: "https://github.com/microsoft/FluidFramework/releases/tag/client_v2.0.0",
},
{
type: "category",
label: "API Documentation",
items: [
{
type: "category",
label: "fluid-framework",
items: [{ type: "autogenerated", dirName: "api/fluid-framework" }],
link: { type: "doc", id: "api/fluid-framework" },
},
{
type: "category",
label: "@fluidframework/azure-client",
items: [{ type: "autogenerated", dirName: "api/azure-client" }],
link: { type: "doc", id: "api/azure-client" },
},
{
type: "category",
label: "@fluidframework/odsp-client",
items: [{ type: "autogenerated", dirName: "api/odsp-client" }],
link: { type: "doc", id: "api/odsp-client" },
},
{
type: "category",
label: "@fluidframework/tinylicious-client",
items: [{ type: "autogenerated", dirName: "api/tinylicious-client" }],
link: { type: "doc", id: "api/tinylicious-client" },
},
{
type: "category",
label: "@fluidframework/devtools",
items: [{ type: "autogenerated", dirName: "api/devtools" }],
link: { type: "doc", id: "api/devtools" },
},
{
type: "category",
label: "@fluidframework/presence",
items: [{ type: "autogenerated", dirName: "api/presence" }],
link: { type: "doc", id: "api/presence" },
},
{
type: "category",
label: "@fluidframework/ai-collab",
items: [{ type: "autogenerated", dirName: "api/ai-collab" }],
link: { type: "doc", id: "api/ai-collab" },
},
],
link: { type: "doc", id: "api/index" },
},
],
};
export default sidebars;