We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32dc88f commit 863cfa4Copy full SHA for 863cfa4
packages/build-tools/tasks/image-tasks.js
@@ -116,7 +116,7 @@ async function processImage(file, set) {
116
117
// We add `null` to beginning b/c we want the original file too
118
// Filter the list to not include sizes bigger than our file
119
- const sizes = [null, ...boltImageSizes].filter(size => width > size);
+ const sizes = [null, ...boltImageSizes].filter(size => width >= size);
120
121
// looping through all sizes and resizing
122
return Promise.all(
0 commit comments