16 lines
326 B
TypeScript
16 lines
326 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",
|
|
"query",
|
|
"mutation",
|
|
"forms",
|
|
],
|
|
}
|
|
|
|
export default sidebars
|