We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cc23ba commit 6114071Copy full SHA for 6114071
1 file changed
src/features/shared/helpers/mdx/getPost.ts
@@ -12,7 +12,7 @@ const getAllFullSlug = () => {
12
withFileTypes: true,
13
recursive: true,
14
})
15
- .filter((post) => post.isFile())
+ .filter((post) => post.isFile() && post.name !== '.DS_Store')
16
// _posts 이후의 경로만 추출. ex) _posts/js/object-type/docs.md -> js/object-type
17
.map((post) => post.parentPath.slice(POST_PATH.length + 1)),
18
),
0 commit comments