rsnext/test/integration/image-component/default
Bruno Antunes 8340e6d345
[Image Component] image sizes property becomes 100vw by default (#20067)
Currently if sizes is not defined, Next.js is setting sizes as:
```
(max-width: 640px) 640px, (max-width: 750px) 750px, (max-width: 828px) 828px, (max-width: 1080px) 1080px, (max-width: 1200px) 1200px, (max-width: 1920px) 1920px, (max-width: 2048px) 2048px, 3840px'
```

This pull request will make sizes be `100vw` by default, which will allow us to download "smaller" images than what's currently happening. 

In a demo app I have, the difference is between downloading 488KB vs 1.4MB (in images)
2020-12-10 21:29:37 +00:00
..
pages Add missing sizes prop on image component (#19128) 2020-11-13 04:30:41 +00:00
public Rotate image from EXIF data (#18687) 2020-11-02 16:26:03 +00:00
test [Image Component] image sizes property becomes 100vw by default (#20067) 2020-12-10 21:29:37 +00:00