We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5329b74 commit 94658aeCopy full SHA for 94658ae
packages/@vuepress/core/lib/prepare/ClientComputedMixin.js
@@ -11,7 +11,7 @@
11
function findPageForPath (pages, path) {
12
for (let i = 0; i < pages.length; i++) {
13
const page = pages[i]
14
- if (page.path === path) {
+ if (page.path.toLowerCase() === path.toLowerCase()) {
15
return page
16
}
17
0 commit comments