You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some browsers/hostings change the urls to lowercase. Because of that, the findPageForPath function on ClientComputedMixin.js file doesn't find the correct path and shows the NotFound component.
An easy fix for this could be to change the line check to:
if (page.path.toLowerCase() === path.toLowerCase()) {
Or otherwise to provide a way where it can be configured from outside.
Version
1.0.0-alpha.2
Steps to reproduce
What is expected?
The right component should be found, making the page render correctly
What is actually happening?
The NotFound component is rendered
Other relevant information
Your OS: Mac OS
Node.js version: 8.9.3
Browser version: Several
Is this a global or local install? Local
Which package manager did you use for the install? npm
The text was updated successfully, but these errors were encountered:
alexjoverm
added a commit
to alexjoverm/vuepress
that referenced
this issue
Oct 2, 2018
Bug report
Some browsers/hostings change the urls to lowercase. Because of that, the
findPageForPath
function onClientComputedMixin.js
file doesn't find the correct path and shows theNotFound
component.An easy fix for this could be to change the line check to:
Or otherwise to provide a way where it can be configured from outside.
Version
1.0.0-alpha.2
Steps to reproduce
What is expected?
The right component should be found, making the page render correctly
What is actually happening?
The
NotFound
component is renderedOther relevant information
The text was updated successfully, but these errors were encountered: