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

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

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

export default sidebars;