2022-08-04 11:42:53 +00:00
|
|
|
// @ts-check
|
2023-01-23 09:37:39 +00:00
|
|
|
|
2022-08-04 11:42:53 +00:00
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
2022-12-23 11:29:16 +00:00
|
|
|
|
2022-08-04 11:42:53 +00:00
|
|
|
const sidebars = {
|
2022-12-23 11:29:16 +00:00
|
|
|
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
|
|
|
{
|
2022-12-23 11:29:16 +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;
|