2022-08-04 13:42:53 +02:00
|
|
|
// @ts-check
|
2023-01-23 15:07:39 +05:30
|
|
|
|
2022-08-04 13:42:53 +02:00
|
|
|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
2022-12-23 16:59:16 +05:30
|
|
|
|
2022-08-04 13:42:53 +02:00
|
|
|
const sidebars = {
|
2023-03-21 22:08:00 +11:00
|
|
|
main: [
|
2023-05-04 13:46:34 +01:00
|
|
|
"overview/what-is-waku",
|
2023-03-22 14:06:52 +11:00
|
|
|
"overview/history",
|
|
|
|
"overview/why-waku",
|
2023-05-04 15:01:05 +01:00
|
|
|
"overview/use-cases",
|
2023-03-22 14:06:52 +11:00
|
|
|
"overview/who-is-using-waku",
|
|
|
|
"overview/implementations",
|
2022-08-04 13:42:53 +02:00
|
|
|
{
|
2022-12-23 16:59:16 +05:30
|
|
|
type: "category",
|
2023-05-13 21:58:19 +01:00
|
|
|
label: "Waku Concepts",
|
2022-12-23 16:59:16 +05:30
|
|
|
collapsed: false,
|
|
|
|
collapsible: true,
|
|
|
|
items: [
|
2023-05-13 21:58:19 +01:00
|
|
|
"overview/concepts/protocols",
|
2023-05-14 06:08:18 +01:00
|
|
|
"overview/concepts/network-domains",
|
|
|
|
"overview/concepts/node-discovery",
|
2023-03-22 14:06:52 +11:00
|
|
|
"overview/concepts/content-topics",
|
2023-05-14 21:34:45 +01:00
|
|
|
"overview/concepts/transports",
|
2022-12-23 16:59:16 +05:30
|
|
|
],
|
2022-08-04 13:42:53 +02:00
|
|
|
},
|
2023-05-14 06:18:41 +01:00
|
|
|
{
|
|
|
|
type: "category",
|
|
|
|
label: "Reference",
|
|
|
|
collapsed: true,
|
|
|
|
collapsible: true,
|
|
|
|
items: [
|
|
|
|
"overview/reference/security-features",
|
|
|
|
"overview/reference/research-in-progress",
|
|
|
|
"overview/reference/waku-vs-libp2p",
|
|
|
|
],
|
|
|
|
},
|
2022-08-04 13:42:53 +02:00
|
|
|
],
|
2023-03-21 22:08:00 +11:00
|
|
|
browser: [
|
2023-03-27 09:39:24 +11:00
|
|
|
"browser/introduction",
|
|
|
|
"browser/quick-start",
|
|
|
|
"browser/build-chat-app",
|
2023-03-21 22:08:00 +11:00
|
|
|
]
|
2022-08-04 13:42:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = sidebars;
|