-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebars.js
42 lines (41 loc) · 1.34 KB
/
sidebars.js
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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
"intro",
{
type: "category",
label: "Component Generation",
collapsed: false,
link: {
type: "generated-index",
title: "Component Generation",
description:
"Learn about how to generate component using Arclix.",
},
items: [
"component-generation/generate",
"component-generation/multiple-nested",
"component-generation/option",
"component-generation/example",
],
},
{
type: "category",
label: "Arclix CLI Configuration",
collapsed: false,
link: {
type: "generated-index",
title: "Arclix CLI Configuration",
description:
"Learn about how to configure and create Arclix config file.",
},
items: [
"arclix-configuration/config",
"arclix-configuration/option",
"arclix-configuration/dynamic-component-types",
"arclix-configuration/custom-templates",
],
},
],
};
module.exports = sidebars;