🥤 gulp 사용하기 (3) Image Optimization
gulp-image Optimize PNG, JPG, GIF, SVG images with gulp task. www.npmjs.com 공식 문서를 보면 이미지 압축에 대한 옵션이 많은 것을 볼 수 있다. 원하는 대로 설정하자. const gulp = require('gulp'); const image = require('gulp-image'); gulp.task('image', () => { gulp.src('./fixtures/*') .pipe(image({ pngquant: true, optipng: false, zopflipng: true, jpegRecompress: false, mozjpeg: true, gifsicle: true, svgo: true, concurrent: 10, quiet:..