mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-04 18:59:08 +01:00
49 lines
995 B
TypeScript
49 lines
995 B
TypeScript
|
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
|
||
|
|
||
|
const sidebars: SidebarsConfig = {
|
||
|
mainSidebar: [
|
||
|
{
|
||
|
type: "doc",
|
||
|
id: "index",
|
||
|
label: "Home",
|
||
|
},
|
||
|
{
|
||
|
type: "doc",
|
||
|
id: "keybindings",
|
||
|
label: "Keybindings",
|
||
|
},
|
||
|
{
|
||
|
type: "doc",
|
||
|
id: "config",
|
||
|
label: "Configuration",
|
||
|
},
|
||
|
{
|
||
|
type: "doc",
|
||
|
id: "customwidgets",
|
||
|
label: "Custom Widgets",
|
||
|
},
|
||
|
{
|
||
|
type: "doc",
|
||
|
id: "telemetry",
|
||
|
label: "Telemetry",
|
||
|
},
|
||
|
{
|
||
|
type: "doc",
|
||
|
id: "wsh",
|
||
|
label: "Wsh",
|
||
|
},
|
||
|
{
|
||
|
type: "doc",
|
||
|
id: "widgets",
|
||
|
label: "Widgets",
|
||
|
},
|
||
|
{
|
||
|
type: "doc",
|
||
|
id: "faq",
|
||
|
label: "FAQ",
|
||
|
},
|
||
|
],
|
||
|
};
|
||
|
|
||
|
export default sidebars;
|