Added type for sidebars.ts

This commit is contained in:
Rui Alves 2024-09-29 11:11:07 +01:00
parent c4e30ca884
commit a504468955

View File

@ -1,4 +1,6 @@
module.exports = {
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
docs: {
Frigate: [
'frigate/index',
@ -85,3 +87,5 @@ module.exports = {
],
},
};
export default sidebars;