2022-08-04 13:42:53 +02:00
|
|
|
// @ts-check
|
2023-01-23 15:07:39 +05:30
|
|
|
|
2023-05-20 00:35:51 +01:00
|
|
|
/** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */
|
2022-08-04 13:42:53 +02:00
|
|
|
const sidebars = {
|
2023-05-20 00:35:51 +01:00
|
|
|
main: [
|
2023-05-20 05:23:47 +01:00
|
|
|
"overview/index",
|
2023-05-20 00:35:51 +01:00
|
|
|
"overview/history",
|
|
|
|
|
"overview/why-waku",
|
|
|
|
|
"overview/use-cases",
|
2023-05-20 01:15:16 +01:00
|
|
|
"overview/clients",
|
2023-05-20 00:35:51 +01:00
|
|
|
{
|
|
|
|
|
type: "category",
|
2023-05-21 01:32:38 +01:00
|
|
|
label: "Concepts",
|
2023-05-20 00:35:51 +01:00
|
|
|
collapsed: false,
|
|
|
|
|
collapsible: true,
|
|
|
|
|
items: [
|
|
|
|
|
"overview/concepts/protocols",
|
|
|
|
|
"overview/concepts/network-domains",
|
2023-05-22 06:19:27 +01:00
|
|
|
"overview/concepts/peer-discovery",
|
2023-05-20 00:35:51 +01:00
|
|
|
"overview/concepts/content-topics",
|
|
|
|
|
"overview/concepts/transports"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: "category",
|
|
|
|
|
label: "Reference",
|
|
|
|
|
collapsed: false,
|
|
|
|
|
collapsible: true,
|
|
|
|
|
items: [
|
|
|
|
|
"overview/reference/security-features",
|
|
|
|
|
"overview/reference/research-in-progress",
|
|
|
|
|
"overview/reference/waku-vs-libp2p"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
js: [
|
2023-05-20 05:23:47 +01:00
|
|
|
"clients/js-waku/index"
|
2023-05-22 06:19:27 +01:00
|
|
|
],
|
|
|
|
|
community: [
|
|
|
|
|
"community"
|
2023-05-20 00:35:51 +01:00
|
|
|
]
|
2022-08-04 13:42:53 +02:00
|
|
|
};
|
|
|
|
|
|
2023-05-20 00:35:51 +01:00
|
|
|
module.exports = sidebars;
|