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
Noticed that in one of my projects, if I had a URL that had query parameters, they would not be included in the outbound URL.
For example, a URL like
/api/foo?query=xyz
When logged, would come out as
/api/foo
This might overlap with the solution for #578 so need to make sure both browser level URL query params and app request query params can all play nice.
The text was updated successfully, but these errors were encountered:
ctx.url
Still not fixed, looks like there is a major flaw in the current logic
return Promise.resolve(fs.existsSync(this.compilation.context.userWorkspace, bareUrl) || bareUrl === '/');
It should be using path.join before checking if the file fs.exists on disk, as right now it will always be true for userWorkspace 🤦
path.join
fs.exists
userWorkspace
Sorry, something went wrong.
thescientist13
Successfully merging a pull request may close this issue.
Type of Change
Summary
Noticed that in one of my projects, if I had a URL that had query parameters, they would not be included in the outbound URL.
Details
For example, a URL like
/api/foo?query=xyz
When logged, would come out as
The text was updated successfully, but these errors were encountered: