-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsidebars.js
More file actions
61 lines (58 loc) · 1.4 KB
/
sidebars.js
File metadata and controls
61 lines (58 loc) · 1.4 KB
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
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
// tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
sidebar: [
"introduction",
{
type: "category",
label: "Quickstart",
collapsed: false,
items: [{ type: "autogenerated", dirName: "quickstart" }],
},
{
type: "category",
label: "SDKs Reference",
items: [
"sdks/playwright/index",
"sdks/storybook/index",
"sdks/cypress/index",
"sdks/webdriverio/index",
"sdks/puppeteer/index",
"sdks/cli",
"sdks/nodejs",
],
},
{
type: "category",
label: "Learn",
items: [{ type: "autogenerated", dirName: "learn" }],
},
{
type: "link",
label: "Website",
href: "https://argos-ci.com/homepage",
className: "external-link",
},
{
type: "link",
label: "Discord",
href: "https://argos-ci.com/discord",
className: "external-link",
},
{
type: "link",
label: "GitHub",
href: "https://github.com/argos-ci",
className: "external-link",
},
{
type: "link",
label: "Contact support",
href: "https://argos-ci.com/contact",
className: "external-link",
},
],
};
module.exports = sidebars;