Skip to content

Commit 7a9b83c

Browse files
committed
refactor: remove underscore-prefixed directory filtering in config.js
1 parent 25363e0 commit 7a9b83c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/.vitepress/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function listNestedDocDirs(project) {
114114

115115
return fs
116116
.readdirSync(dir, { withFileTypes: true })
117-
.filter((entry) => entry.isDirectory() && !entry.name.startsWith("_"))
117+
.filter((entry) => entry.isDirectory())
118118
.map((entry) => entry.name)
119119
.filter((name) => listMarkdownFiles(project, name).length > 0)
120120
.sort();

0 commit comments

Comments
 (0)