aboutsummaryrefslogtreecommitdiffstats
path: root/docs/sidebars.ts
blob: 9943e5132c08d6907dde964a7e1faac4c419d064 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";

import openapiSidebar from "./docs/api/sidebar";

const sidebars: SidebarsConfig = {
  sidebar: [
    { type: "autogenerated", dirName: "." },
    {
      type: "category",
      label: "API",
      items: openapiSidebar,
    },
  ],
};

export default sidebars;