Skip to content

Commit 98c056c

Browse files
committed
update sidebars
1 parent 093610a commit 98c056c

6 files changed

+18
-7
lines changed

docusaurus.config.js

+12-6
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,18 @@ const config = {
5353
src: "img/logo.svg",
5454
},
5555
items: [
56-
// {
57-
// type: "doc",
58-
// docId: "intro",
59-
// position: "left",
60-
// label: "Tutorial",
61-
// },
56+
{
57+
type: "doc",
58+
docId: "FreeSWITCH-Explained/index",
59+
position: "left",
60+
label: "FreeSWITCH Explained",
61+
},
62+
{
63+
type: "doc",
64+
docId: "Channel-Variables-Catalog/index",
65+
position: "left",
66+
label: "Variables",
67+
},
6268
{
6369
href: "https://github.com/signalwire/freeswitch",
6470
label: "GitHub",

sidebars.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@
1414
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
1515
const sidebars = {
1616
// By default, Docusaurus generates a sidebar from the docs folder structure
17-
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
17+
variablesSidebar: [
18+
{ type: "autogenerated", dirName: "Channel-Variables-Catalog" },
19+
],
20+
freeswitchExplainedSidebar: [
21+
{ type: "autogenerated", dirName: "FreeSWITCH-Explained" },
22+
],
1823

1924
// But you can create a sidebar manually
2025
/*

0 commit comments

Comments
 (0)