From f9803004bc026283b19c36be4b81467baad3f2cc Mon Sep 17 00:00:00 2001 From: Ben Word Date: Thu, 12 Feb 2015 16:40:09 -0600 Subject: [PATCH] Disable removeUnknownsAndDefaults on svgo --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 268bb8c..ba67750 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -177,7 +177,8 @@ gulp.task('images', function() { return gulp.src(globs.images) .pipe($.imagemin({ progressive: true, - interlaced: true + interlaced: true, + svgoPlugins: [{removeUnknownsAndDefaults: false}] })) .pipe(gulp.dest(path.dist + 'images')); });