mirror of
https://github.com/MizuchiLabs/mantrae.git
synced 2026-02-10 08:18:57 -06:00
23 lines
462 B
TypeScript
23 lines
462 B
TypeScript
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
tutorialSidebar: [
|
|
"quickstart",
|
|
"faq",
|
|
{
|
|
type: "category",
|
|
label: "Usage",
|
|
items: [
|
|
"usage/profiles",
|
|
"usage/config",
|
|
"usage/dns",
|
|
"usage/agents",
|
|
"usage/backups",
|
|
"usage/oidc",
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|