docs/sidebars.js

37 lines
720 B
JavaScript
Raw Normal View History

2024-04-28 16:57:46 +00:00
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
{
type: "link",
label: "Support Discord",
2024-04-28 18:15:54 +00:00
href: "https://discord.gg/BkmEarDQxq",
2024-04-28 16:57:46 +00:00
},
"README",
{
type: "category",
2024-04-28 18:15:54 +00:00
label: "lethal-extended",
2024-04-28 16:57:46 +00:00
link: {
type: "doc",
2024-04-28 18:15:54 +00:00
id: "lethalextended/README",
2024-04-28 16:57:46 +00:00
},
items: [
{
type: "category",
label: "Getting Started",
link: {
type: "doc",
2024-04-28 18:15:54 +00:00
id: "lethalextended/getting-started/README",
2024-04-28 16:57:46 +00:00
},
2024-04-28 18:15:54 +00:00
items: ["lethalextended/getting-started/README"],
2024-04-28 16:57:46 +00:00
},
],
},
{
},
],
};
module.exports = sidebars;