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
The dev server serves the wrong page when both:
{ "source": [ "index.html", "publish.html", ], }
/publish
publish.html
/publish?foo=bar
pubish.html
/publish.html?foo=bar
index.html
Reproducible on this commit.
The text was updated successfully, but these errors were encountered:
The relevant code:
parcel/packages/reporters/dev-server/src/Server.js
Line 184 in feae29e
Sorry, something went wrong.
Hey @mischnic, Taking this up.
Successfully merging a pull request may close this issue.
🐛 bug report
The dev server serves the wrong page when both:
🎛 Configuration (.babelrc, package.json, cli command)
🤔 Expected Behavior
/publish
returnspublish.html
/publish?foo=bar
returnspubish.html
/publish.html?foo=bar
returnspublish.html
😯 Current Behavior
/publish
correctly returnspublish.html
/publish?foo=bar
incorrectly returnsindex.html
/publish.html?foo=bar
correctly returnspublish.html
💻 Code Sample
Reproducible on this commit.
The text was updated successfully, but these errors were encountered: