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
To support protocol relative URLs, a slash is added after the replacement but it introduces multiple issues.
When the baseUrl is defined to a domain, it adds an unecessary slash.
When the baseUrl is not defined, it adds an unecessary leading slash.
Note that //image/dummy.png is not a valid protocal-relative URL since there is no domain, a correct URL would be//example.test/image/dummy.png
//image/dummy.png
//example.test/image/dummy.png
The text was updated successfully, but these errors were encountered:
It seems to happen only when the stream wrapper is mapped to an empty string (during development).
Sorry, something went wrong.
No branches or pull requests
To support protocol relative URLs, a slash is added after the replacement but it introduces multiple issues.
When the baseUrl is defined to a domain, it adds an unecessary slash.
When the baseUrl is not defined, it adds an unecessary leading slash.
Note that
//image/dummy.png
is not a valid protocal-relative URL since there is no domain, a correct URL would be//example.test/image/dummy.png
The text was updated successfully, but these errors were encountered: