aboutsummaryrefslogtreecommitdiffstats
path: root/docs/sidebars.ts
blob: 67337c103de00419c57017c5c644b47ebb5e7b3b (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;