docs.waku.org/sidebars.js

34 lines
799 B
JavaScript
Raw Normal View History

2022-08-04 11:42:53 +00:00
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
2022-08-04 11:42:53 +00:00
const sidebars = {
docs: [
"introduction",
"history",
"motivation-and-goals",
"why-waku",
"who-is-using-waku",
"implementations",
"how-does-it-work",
2022-08-04 11:42:53 +00:00
{
type: "category",
label: "Concepts",
collapsed: false,
collapsible: true,
items: [
"Concepts/different-protocols",
"Concepts/protocols-explained",
"Concepts/protocols-overview-by-example",
"Concepts/discovery-and-bootstrap",
"Concepts/transports-in-waku",
"Concepts/content-topics",
"Concepts/security-features",
"Concepts/research-in-progress",
"Concepts/waku-vs-libp2p",
],
2022-08-04 11:42:53 +00:00
},
],
};
module.exports = sidebars;