Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@vuepress/core/lib/prepare/ClientComputedMixin.js
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
function findPageForPath (pages, path) {
for (let i = 0; i < pages.length; i++) {
const page = pages[i]
if (page.path === path) {
if (page.path.toLowerCase() === path.toLowerCase()) {
return page
}
}

0 comments on commit 94658ae

Please sign in to comment.