We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8da663d commit 9c2a469Copy full SHA for 9c2a469
1 file changed
src/webpack/imgproxyUrlBuilder.ts
@@ -34,7 +34,7 @@ export const getImgproxyUrlBuilder = ({
34
35
return pixelRatios.reduce((acc, item) => {
36
const dprResize = compressionsRatio[item];
37
- if (dprResize) {
+ if (dprResize !== undefined) {
38
acc[item] = buildImgproxyUrl(imagePath, dprResize, extension);
39
}
40
return acc;
0 commit comments