10 lines
271 B
TypeScript
10 lines
271 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"],
|
|
}
|
|
|
|
export default sidebars
|