import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; const sidebars: SidebarsConfig = { docsSidebar: [ { type: "doc", id: "introduction", }, { type: "category", label: "Getting Started", items: [ { type: "doc", id: "setup/installation", }, { type: "doc", id: "setup/nginx-reverse-proxy", }, { type: "doc", id: "setup/upgrading", }, ], }, { type: "category", label: "Configuration", items: [ { type: "doc", id: "configuration/environment-variables", }, { type: "doc", id: "configuration/ldap", }, ], }, { type: "category", label: "Guides", items: [ { type: "doc", id: "guides/proxy-services", }, ], }, { type: "category", label: "Client Examples", link: { type: "generated-index", title: "Client Examples", description: "Examples of how to setup Pocket ID with different clients", slug: "client-examples", }, items: [ "client-examples/cloudflare-zero-trust", "client-examples/grist", "client-examples/hoarder", "client-examples/jellyfin", "client-examples/netbox", "client-examples/open-webui", "client-examples/pgadmin", "client-examples/portainer", "client-examples/proxmox", "client-examples/semaphore-ui", "client-examples/vikunja", ], }, { type: "category", label: "Troubleshooting", items: [ { type: "doc", id: "troubleshooting/account-recovery", }, ], }, { type: "category", label: "Helping Out", items: [ { type: "doc", id: "help-out/contribute", }, ], }, { type: "link", label: "Demo", href: "https://pocket-id.eliasschneider.com/", }, ], }; export default sidebars;