summaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authoramzrk22020-07-29 16:45:58 +0800
committeramzrk22020-07-29 16:45:58 +0800
commit9c6bc389d4394b1dfc4ed6b99b2454aee29ce836 (patch)
treea6fcefaaed1a0292e0871ca769ccd40acf56880f /gulpfile.js
parentf150b01203eaae487200a64207eaec97859e6868 (diff)
downloadhugo-theme-fuji-9c6bc389d4394b1dfc4ed6b99b2454aee29ce836.tar.gz
hugo-theme-fuji-9c6bc389d4394b1dfc4ed6b99b2454aee29ce836.tar.bz2
hugo-theme-fuji-9c6bc389d4394b1dfc4ed6b99b2454aee29ce836.zip
Switch icons to iconfont
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js2
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('.'));
}