// @ts-check /** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */ const sidebars = { build: [ { type: "link", label: "Home", href: "/", }, { type: "category", label: "JavaScript SDK", collapsed: false, link: { type: "doc", id: "build/javascript/index", }, items: [ "build/javascript/reliable-channels", "build/javascript/light-send-receive", "build/javascript/store-retrieve-messages", "build/javascript/message-encryption", "build/javascript/use-waku-react", "build/javascript/use-waku-create-app", "build/javascript/local-dev-env", "build/javascript/configure-discovery", "build/javascript/run-waku-nodejs", "build/javascript/debug-waku-dapp", "build/javascript/manage-filter", "build/javascript/faq", { type: "html", value: '@waku/sdk Examples', }, { type: "html", value: 'API Reference', }, ], }, ], runNode: [ { type: "link", label: "Home", href: "/", }, { type: "category", label: "Run a Waku Node", collapsed: false, link: { type: "doc", id: "run-node/index", }, items: [ "run-node/run-docker-compose", "run-node/run-docker", "run-node/build-source", "run-node/configure-discovery", "run-node/find-node-address", "run-node/config-methods", "run-node/config-options", "run-node/configure-nwaku", "run-node/faq", "run-node/upgrade-instructions", { type: "html", value: 'REST API Reference', }, ], }, ], learn: [ { type: "link", label: "Home", href: "/", }, "learn/index", { type: "category", label: "Concepts", collapsed: false, items: [ "learn/concepts/protocols", "learn/concepts/content-topics", "learn/concepts/network-domains", "learn/concepts/transports", { type: "category", label: "Peer Discovery", link: { type: "doc", id: "learn/concepts/peer-discovery", }, items: [ "learn/concepts/static-peers", "learn/concepts/dns-discovery", "learn/concepts/discv5", "learn/concepts/peer-exchange", ], }, ], }, "learn/security-features", { type: "category", label: "Research", link: { type: "doc", id: "learn/research/index", }, items: [ { type: "category", label: "Benchmarks", collapsed: false, items: [ { type: "autogenerated", dirName: "learn/research/benchmarks", }, ], }, { type: "category", label: "Research and Studies", collapsed: false, items: [ { type: "autogenerated", dirName: "learn/research/research-and-studies", }, ], }, ], }, "learn/waku-vs-libp2p", "learn/glossary", "learn/faq", ], }; module.exports = sidebars;