/** @type {import('@docusaurus/plugin-content-docs').PropSidebarItemHtml} */ const clerk = { type: "html", value: ` Clerk – Authentication & User Management `, defaultStyle: true, } module.exports = { docs: [ { type: "category", label: "Getting Started", collapsed: false, items: [ "getting-started/introduction", "getting-started/example", "getting-started/client", "getting-started/rest-api", "getting-started/typescript", "getting-started/upgrade-v4", ], }, { type: "category", label: "Configuration", collapsed: true, items: [ "configuration/initialization", "configuration/options", { type: "category", label: "Providers", collapsed: true, items: [ "configuration/providers/oauth", "configuration/providers/email", "configuration/providers/credentials", ], }, "configuration/databases", "configuration/pages", "configuration/callbacks", "configuration/events", "configuration/nextjs", ], }, { type: "category", label: "Providers", link: { type: "doc", id: "providers/overview" }, collapsed: true, items: [ { type: "autogenerated", dirName: "providers", }, ], }, "adapters", "warnings", "errors", "deployment", { type: "category", label: "Guides", link: { type: "doc", id: "guides/guides" }, collapsed: true, items: ["guides/basics", "guides/fullstack", "guides/testing"], }, clerk, { type: "html", value: '', defaultStyle: true, }, ], }