diff options
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js index b45595c..d9e1d9d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -48,7 +48,7 @@ function css() { src = src .pipe(sass({ includePaths: ['./node_modules'] }).on('error', sass.logError)) .pipe(postcss([autoprefixer()])) - .pipe(cleanCSS()); + .pipe(cleanCSS({ rebase: false })); if (env === 'development') { src = src.pipe(sourcemaps.write('.')); } |