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 = {
|
2023-03-21 11:08:00 +00:00
|
|
|
main: [
|
|
|
|
"main/introduction",
|
|
|
|
"main/history",
|
|
|
|
"main/motivation-and-goals",
|
|
|
|
"main/why-waku",
|
|
|
|
"main/who-is-using-waku",
|
|
|
|
"main/implementations",
|
|
|
|
"main/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: [
|
2023-03-21 11:08:00 +00:00
|
|
|
"main/concepts/different-protocols",
|
|
|
|
"main/concepts/protocols-explained",
|
|
|
|
"main/concepts/protocols-overview-by-example",
|
|
|
|
"main/concepts/discovery-and-bootstrap",
|
|
|
|
"main/concepts/transports-in-waku",
|
|
|
|
"main/concepts/content-topics",
|
|
|
|
"main/concepts/security-features",
|
|
|
|
"main/concepts/research-in-progress",
|
|
|
|
"main/concepts/waku-vs-libp2p",
|
2022-12-23 11:29:16 +00:00
|
|
|
],
|
2022-08-04 11:42:53 +00:00
|
|
|
},
|
|
|
|
],
|
2023-03-21 11:08:00 +00:00
|
|
|
browser: [
|
|
|
|
"browser/introduction"
|
|
|
|
]
|
2022-08-04 11:42:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = sidebars;
|