forked from harness/developer-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars-release-notes.js
More file actions
43 lines (39 loc) · 1009 Bytes
/
sidebars-release-notes.js
File metadata and controls
43 lines (39 loc) · 1009 Bytes
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
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
releaseNotes: [
// Release Notes Parent
{
type: "category",
label: "Release Notes",
link: {
type: "doc",
id: "whats-new",
},
collapsed: true,
items: [{ type: "autogenerated", dirName: "." },
{
type: "link",
label: "FirstGen SaaS",
href: "/docs/first-gen/firstgen-release-notes/harness-saa-s-release-notes",
},
{
type: "link",
label: "FirstGen Self-Managed Enterprise Edition",
href: "/docs/first-gen/firstgen-release-notes/harness-on-prem-release-notes",
},
],
},
{
type: "link",
label: "Subscribe via RSS",
href: "pathname:///release-notes/rss.xml",
className: "sidebar-item-rss",
customProps: {
target: "_blank",
},
},
//Additional Items in this parent can go here.
],
};
module.exports = sidebars;