meshtastic/sidebars.js

37 lines
746 B
JavaScript
Raw Normal View History

2022-04-08 07:29:34 -07:00
// @ts-check
2022-04-08 07:29:34 -07:00
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
module.exports = {
Sidebar: [
{
type: "autogenerated",
dirName: "."
2022-04-08 07:29:34 -07:00
},
{
type: "category",
label: "Development",
items: [
{
type: "autogenerated",
dirName: "development"
},
{
type: "category",
label: "Reference Material",
items: [
{
type: "autogenerated",
dirName: "development/reference"
},
{
type: "link",
label: "Protobuf Docs",
href: "https://buf.build/meshtastic/protobufs"
}
]
}
]
}
]
2021-04-01 17:34:44 -07:00
};