Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit a40b9fe

Browse files
committed
Merge pull request #28 from jamesmallen/patch-imagemin-config
Wire up correct imagemin config object
2 parents a2f6800 + e92c6ce commit a40b9fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js/tasks/images.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ gulp.task('images', function() {
1515
// Optimize images in the `dist` folder (slow)
1616
gulp.task('images-dist', ['utils-dist'], function() {
1717
return gulp.src(config.dist.src)
18-
.pipe(plugins.imagemin(config.imagemin))
18+
.pipe(plugins.imagemin(config.dist.imagemin))
1919
.pipe(gulp.dest(config.dist.dest));
2020
});

0 commit comments

Comments
 (0)