Each topic gets a folder

This commit is contained in:
Sebastian Englbrecht 2022-11-25 19:14:55 +01:00
parent a46c37018f
commit 23eee4dd07
6 changed files with 11 additions and 3 deletions

View File

@ -1,6 +1,10 @@
module.exports = { module.exports = {
docs: { docs: {
Frigate: ["index", "hardware", "installation"], Frigate: [
"frigate/index",
"frigate/hardware",
"frigate/installation",
],
Guides: [ Guides: [
"guides/camera_setup", "guides/camera_setup",
"guides/getting_started", "guides/getting_started",
@ -30,7 +34,11 @@ module.exports = {
"integrations/api", "integrations/api",
"integrations/mqtt", "integrations/mqtt",
], ],
Troubleshooting: ["faqs"], Troubleshooting: [
Development: ["contributing"], "troubleshooting/faqs",
],
Development: [
"development/contributing",
],
}, },
}; };