こんにちは、私のプロジェクトでは、gulp-imagemin を使用して、定義から製品アプリケーションへのイメージをミニファイしています。これはうまくいきません..画像のないフォルダーを取得します..
これが行われたことです:
gulp.task('画像', function () {
return gulp.src(config.app + 'content/images/**')
.pipe(plumber({errorHandler: handleErrors}))
.pipe(changed(config.dist + 'content/images'))
.pipe(imagemin({optimizationLevel: 5, progressive: true, interlaced: true}))
.pipe(rev())
.pipe(gulp.dest(config.dist + 'content/images'))
.pipe(rev.manifest(config.revManifest, {
base: config.dist,
merge: true
}))
.pipe(gulp.dest(config.dist))
.pipe(browserSync.reload({stream: true}));
});
どうしたの??