diff options
author | amzrk2 | 2020-07-29 16:45:58 +0800 |
---|---|---|
committer | amzrk2 | 2020-07-29 16:45:58 +0800 |
commit | 9c6bc389d4394b1dfc4ed6b99b2454aee29ce836 (patch) | |
tree | a6fcefaaed1a0292e0871ca769ccd40acf56880f /gulpfile.js | |
parent | f150b01203eaae487200a64207eaec97859e6868 (diff) | |
download | hugo-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.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('.')); } |