-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Closed as not planned
Labels
Description
Vue version
3.5.12
Link to minimal reproduction
Steps to reproduce
open devtools
refresh the page
see request for 515cc02842c239d102cea09fdc0b909406cf10d5.png
What is expected?
only one webp request
if we use a simple html like this:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no,viewport-fit=cover">
</head>
<body>
<picture>
<source
type="image/webp"
srcset="http://picasso-static.xiaohongshu.com/fe-platform/515cc02842c239d102cea09fdc0b909406cf10d5.png?imageView2/2/w/300/q/80/format/webp" />
<img
src="http://picasso-static.xiaohongshu.com/fe-platform/515cc02842c239d102cea09fdc0b909406cf10d5.png?imageView2/2/w/300/q/80/format/png" />
</picture>
</body>
</html>
we only get one request which type is webp:
What is actually happening?
see two request named 515cc02842c239d102cea09fdc0b909406cf10d5.png,one is webp,other is png
System Info
No response
Any additional comments?
No response