Skip to content

Commit 7f2f97d

Browse files
committed
Use types in sidebars config
1 parent 574d097 commit 7f2f97d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

website/sidebars.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
module.exports = {
1+
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs'
2+
3+
const sidebars: SidebarsConfig = {
24
docs: [
35
{
46
type: 'category',
@@ -42,3 +44,5 @@ module.exports = {
4244
},
4345
],
4446
}
47+
48+
export default sidebars

0 commit comments

Comments
 (0)