mirror of
https://github.com/chenasraf/simple-scaffold.git
synced 2026-05-17 17:28:09 +00:00
29 lines
691 B
TypeScript
29 lines
691 B
TypeScript
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
usage: [{ type: "autogenerated", dirName: "usage" }],
|
|
api: [
|
|
"api/index",
|
|
{
|
|
type: "category",
|
|
label: "Functions",
|
|
items: [{ type: "autogenerated", dirName: "api/functions" }],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Types",
|
|
items: [
|
|
{ type: "autogenerated", dirName: "api/interfaces" },
|
|
{ type: "autogenerated", dirName: "api/type-aliases" },
|
|
],
|
|
},
|
|
{
|
|
type: "category",
|
|
label: "Variables",
|
|
items: [{ type: "autogenerated", dirName: "api/variables" }],
|
|
},
|
|
],
|
|
}
|
|
|
|
export default sidebars
|