We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reproduced, this is because the following mapping matches / :
/
{ // Project mapping match: /^\/(.*)/, cwd: job.webapp, file: '$1', static: !job.watch && !job.debugDevMode },
But after interpolation, $1 is empty and it fails the file handler :
$1
let filePath = /([^?#]+)/.exec(redirect)[1] // filter URL parameters & hash
because it does not match, it might be interesting to replace + with *
The text was updated successfully, but these errors were encountered:
ArnaudBuchholz/reserve#99
Sorry, something went wrong.
Fixed in [email protected]
[email protected]
chores(package): update reserve #94
41186dd
No branches or pull requests
Reproduced, this is because the following mapping matches
/
:But after interpolation,
$1
is empty and it fails the file handler :because it does not match, it might be interesting to replace + with *
The text was updated successfully, but these errors were encountered: