microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0d4452b33c2409d03315019dae0d34e468641dfb

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

docs/docusaurus/sidebars.js

88lines · modecode

1// @ts-check
2
3/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
4const sidebars = {
5 docsSidebar: [
6 {type: 'doc', id: 'README', label: 'Home'},
7 {
8 type: 'category',
9 label: 'Get Started',
10 link: {type: 'doc', id: 'getting-started/README'},
11 items: [{type: 'autogenerated', dirName: 'getting-started'}],
12 },
13 {
14 type: 'category',
15 label: 'Workflows',
16 items: [
17 {
18 type: 'category',
19 label: 'RPI Workflow',
20 link: {type: 'doc', id: 'rpi/README'},
21 items: [{type: 'autogenerated', dirName: 'rpi'}],
22 },
23 {
24 type: 'category',
25 label: 'HVE Guide',
26 link: {type: 'doc', id: 'hve-guide/README'},
27 items: [{type: 'autogenerated', dirName: 'hve-guide'}],
28 },
29 {
30 type: 'category',
31 label: 'Design Thinking',
32 link: {type: 'doc', id: 'design-thinking/README'},
33 items: [{type: 'autogenerated', dirName: 'design-thinking'}],
34 },
35 ],
36 },
37 {
38 type: 'category',
39 label: 'Customize',
40 items: [
41 {
42 type: 'category',
43 label: 'Customization',
44 link: {type: 'doc', id: 'customization/README'},
45 items: [{type: 'autogenerated', dirName: 'customization'}],
46 },
47 {
48 type: 'category',
49 label: 'Templates',
50 link: {type: 'doc', id: 'templates/README'},
51 items: [{type: 'autogenerated', dirName: 'templates'}],
52 },
53 {
54 type: 'category',
55 label: 'Contributing',
56 link: {type: 'doc', id: 'contributing/README'},
57 items: [{type: 'autogenerated', dirName: 'contributing'}],
58 },
59 ],
60 },
61 {
62 type: 'category',
63 label: 'Reference',
64 items: [
65 {
66 type: 'category',
67 label: 'Architecture',
68 link: {type: 'doc', id: 'architecture/README'},
69 items: [{type: 'autogenerated', dirName: 'architecture'}],
70 },
71 {
72 type: 'category',
73 label: 'Security',
74 link: {type: 'doc', id: 'security/README'},
75 items: [{type: 'autogenerated', dirName: 'security'}],
76 },
77 {
78 type: 'category',
79 label: 'Agents',
80 link: {type: 'doc', id: 'agents/README'},
81 items: [{type: 'autogenerated', dirName: 'agents'}],
82 },
83 ],
84 },
85 ],
86};
87
88export default sidebars;
89