我正在尝试为生产服务器压缩我的图像,但在运行gulp-imagemin
任务时遇到错误。
这是我的一项任务:
gulp.task('images', function(){
gulp.src('builds/development/images/**/*.*')
.pipe(gulpif(env === 'production', imageMin({
progressive:true,
svgoPlugins:[{removeViewBox:false}],
use:[pngCrush()]
})))
.pipe(gulpif(env === 'production', gulp.dest('builds/production/images')))
.pipe(connect.reload());
});
我得到以下痕迹:
events.js:141
throw er; // Unhandled 'error' event
^
Error: spawn UNKNOWN
at exports._errnoException (util.js:870:11)
at ChildProcess.spawn (internal/child_process.js:298:11)
at Object.exports.spawn (child_process.js:362:9)
at ret.catch.module.exports.promise (C:\Users\user\desktop\workflows\node_modules\gulp-imagemin\node_modules\imagemin-jpegtran\node_modules\exec-buffer\node_modules\execa\index.js:139:26)
at C:\Users\user\desktop\workflows\node_modules\gulp-imagemin\node_modules\imagemin-jpegtran\node_modules\exec-buffer\index.js:35:15
有人可以看看,并尝试提供一些解决方案。
提前致谢。
答案 0 :(得分:0)
我在生产服务器上遇到了同样的问题,我尝试过:
imagemin
; 解决方案是删除node_modules
文件夹并再次运行npm install
。
奇怪的是,它充当了魅力!