From cf928c85eb98c64dd719bee1d4c4d70539c29b1f Mon Sep 17 00:00:00 2001 From: Austin Pray Date: Mon, 4 May 2015 11:25:12 -0500 Subject: [PATCH] Turn off advanced CSS optimizations --- gulpfile.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 6bdf935..824439f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -103,7 +103,10 @@ var cssTasks = function(filename) { 'opera 12' ] }) - .pipe(minifyCss) + .pipe(minifyCss, { + advanced: false, + rebase: false + }) .pipe(function() { return gulpif(enabled.rev, rev()); })