Website/sidebars.js

66 lines
1.4 KiB
JavaScript
Raw Normal View History

2022-02-01 05:49:02 +00:00
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
2022-02-04 22:26:27 +00:00
//tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
2022-02-01 05:49:02 +00:00
// But you can create a sidebar manually
2022-02-04 22:26:27 +00:00
defaultSidebar: [
{
type: 'doc',
label: 'Introduction',
id: 'intro',
},
2022-03-06 05:13:39 +00:00
{
type: 'doc',
label: 'Versions',
id: 'versions',
},
2022-02-04 22:26:27 +00:00
{
type: 'doc',
label: 'Compiling',
id: 'compiling',
},
2022-04-09 05:16:24 +00:00
{
type: 'doc',
label: 'Permissions',
id: 'permissions',
},
2022-02-01 05:49:02 +00:00
{
type: 'category',
2022-04-09 05:16:24 +00:00
label: 'Configuration files',
items: ['customization/config', 'customization/messages', `customization/commandblocker`],
2022-02-04 22:26:27 +00:00
},
2022-03-21 22:12:12 +00:00
{
type: 'category',
label: 'Modules',
2022-04-09 05:16:24 +00:00
items: ['modules/introduction', 'modules/bukkittelnet', 'modules/httpd', 'modules/libsdisguises'],
2022-03-21 22:12:12 +00:00
},
2022-03-03 23:52:55 +00:00
{
type: 'doc',
label: 'Indefinite Bans',
id: 'indefinitebans',
},
2022-02-04 22:26:27 +00:00
{
type: 'doc',
label: 'Configuring Redis',
id: 'redis',
2022-02-01 05:49:02 +00:00
},
],
};
module.exports = sidebars;