Skip to content

Commit

Permalink
Prevent images from being encoded
Browse files Browse the repository at this point in the history
  • Loading branch information
arcatdmz committed Jul 27, 2024
1 parent a4e5811 commit daccadf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ gulp.task("sharp", function (cb) {
return;
}
return gulp
.src("dist/images/**/*.jpg")
.src("dist/images/**/*.jpg", { encoding: false })
.pipe(
through2.obj(function (chunk, enc, cb) {
if (chunk.isNull()) {
Expand Down

0 comments on commit daccadf

Please sign in to comment.