Files

49 lines
995 B
TypeScript
Raw Permalink Normal View History

2024-09-12 15:55:36 -07:00
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
2024-09-12 15:49:40 -07:00
const sidebars: SidebarsConfig = {
2024-09-22 13:08:55 -07:00
mainSidebar: [
{
type: "doc",
id: "index",
label: "Home",
},
{
type: "doc",
id: "keybindings",
label: "Keybindings",
},
2024-09-22 13:24:22 -07:00
{
type: "doc",
id: "config",
label: "Configuration",
},
{
type: "doc",
id: "customwidgets",
label: "Custom Widgets",
},
2024-09-23 14:27:23 -07:00
{
type: "doc",
id: "telemetry",
label: "Telemetry",
},
2024-09-23 16:27:04 -07:00
{
type: "doc",
id: "wsh",
label: "Wsh",
},
2024-09-23 16:54:16 -07:00
{
type: "doc",
id: "widgets",
label: "Widgets",
},
2024-09-30 09:53:02 -07:00
{
type: "doc",
id: "faq",
label: "FAQ",
},
2024-09-22 13:08:55 -07:00
],
2024-09-12 15:49:40 -07:00
};
export default sidebars;