mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-02 18:39:05 +01:00
edb3290349
## Summary We are moving our docsite to this repo for better coordination. ## What's changed? - The docsite codebase is now in docs/ - The docsite will replace storybook as the published GitHub Pages site for this repo - Storybook will now be hosted at https://docs.waveterm.dev/storybook - A new CI workflow will validate any changes to Storybook or the docsite - A combined CD workflow will build and deploy Storybook and the docsite as a single artifact - The Build Helper workflow will now build an embedded version of the docsite before building the app, ensuring the docsite version it has is always the latest
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;
|