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
13.3.0
https://github.com/rbedemann/vue-loader-bug
Use absolute paths (p.ex. for images from static folder) instead of relative paths:
WORKING: <img src="./logo.png" srcset="./logo.png 2x, ./logo.png 3x" />
<img src="./logo.png" srcset="./logo.png 2x, ./logo.png 3x" />
NOT WORKING: <img src="/static/images/logo.png" srcset="/static/images/logo.png 2x, /static/images/logo.png 3x" />
<img src="/static/images/logo.png" srcset="/static/images/logo.png 2x, /static/images/logo.png 3x" />
In reproduction link: 1.) check out repo 2.) run npm install 3.) run npm run dev
Paths to images in srcset attribute stay as they are.
Paths to images in srcset result in "undefined". the src attribute is still the same like before. I would expect same behaviour for srcset.
The text was updated successfully, but these errors were encountered:
Fix to vuejs#1005
87c08ef
Typo in line 50 leads to an incorrect path submitted to require. Return unchanged url for absolute paths.
bcd54d2
fix: fix srcset transform for absolute urls (fix vuejs#1005)
21f5c1e
No branches or pull requests
Version
13.3.0
Reproduction link
https://github.com/rbedemann/vue-loader-bug
Steps to reproduce
Use absolute paths (p.ex. for images from static folder) instead of relative paths:
WORKING:
<img src="./logo.png" srcset="./logo.png 2x, ./logo.png 3x" />
NOT WORKING:
<img src="/static/images/logo.png" srcset="/static/images/logo.png 2x, /static/images/logo.png 3x" />
In reproduction link:
1.) check out repo
2.) run npm install
3.) run npm run dev
What is expected?
Paths to images in srcset attribute stay as they are.
What is actually happening?
Paths to images in srcset result in "undefined". the src attribute is still the same like before. I would expect same behaviour for srcset.
The text was updated successfully, but these errors were encountered: