10 lines
280 B
TypeScript
10 lines
280 B
TypeScript
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"
|
|
|
|
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
docsSidebar: ["getting-started", "state-management", "forms"],
|
|
}
|
|
|
|
export default sidebars
|