You've already forked waveterm-docs
mirror of
https://github.com/wavetermdev/waveterm-docs.git
synced 2026-04-22 15:26:42 -07:00
4449a8b058
* add faq * add a releasenotes page
44 lines
879 B
TypeScript
44 lines
879 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: "telemetry",
|
|
label: "Telemetry",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "wsh",
|
|
label: "Wsh",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "widgets",
|
|
label: "Widgets",
|
|
},
|
|
{
|
|
type: "doc",
|
|
id: "faq",
|
|
label: "FAQ",
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|