mirror of
https://github.com/MizuchiLabs/mantrae.git
synced 2025-12-16 20:05:17 -06:00
26 lines
396 B
TypeScript
26 lines
396 B
TypeScript
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
tutorialSidebar: [
|
|
"intro",
|
|
"quickstart",
|
|
"installation",
|
|
"faq",
|
|
"api",
|
|
{
|
|
type: "category",
|
|
label: "Usage",
|
|
items: [
|
|
"usage/profiles",
|
|
"usage/dns",
|
|
"usage/agents",
|
|
"usage/environment",
|
|
"usage/backups",
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|
|
|