Skip to content

Commit c36a8c0

Browse files
authored
feat: add deployment & configuration sections (#36)
Signed-off-by: Lucas Amaral <[email protected]>
1 parent 3b88852 commit c36a8c0

File tree

6 files changed

+767
-440
lines changed

6 files changed

+767
-440
lines changed

docusaurus/docusaurus.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ const config = {
7070
theme: {
7171
customCss: './src/css/custom.css',
7272
},
73+
blog: false,
7374
}),
7475
],
7576
],

docusaurus/sidebars.js

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,10 @@
1111

1212
// @ts-check
1313

14-
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
15-
const sidebars = {
16-
// By default, Docusaurus generates a sidebar from the docs folder structure
17-
versionSidebar: [{type: 'autogenerated', dirName: '.'}],
14+
import sidebarData from './sidebars.json';
1815

19-
// But you can create a sidebar manually
20-
/*
21-
tutorialSidebar: [
22-
'intro',
23-
'hello',
24-
{
25-
type: 'category',
26-
label: 'Tutorial',
27-
items: ['tutorial-basics/create-a-document'],
28-
},
29-
],
30-
*/
16+
const sidebars = {
17+
docs: sidebarData.docs
3118
};
3219

3320
export default sidebars;

0 commit comments

Comments
 (0)