如何使我的相对路径与clean-css缩小?

时间:2017-05-04 15:03:24

标签: gulp gulp-clean-css

为什么下面的gulp代码会删除我的相对路径?

我正在使用clean-css

gulp.task('build-css', function() {
    return gulp.src([
        'style.css',
        ])
        .pipe(sourcemaps.init())
        .pipe(cleanCSS({debug: true}))
        .pipe(concat('bundle.min.css'))
        .pipe(sourcemaps.write('./maps'))
        .pipe(gulp.dest('dist'))
        .pipe(livereload());
});

原css:

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/social-media/icomoon.eot?mh2h47');
  src:  url('../fonts/social-media/icomoon.eot?mh2h47#iefix') format('embedded-opentype'),
    url('../fonts/social-media/icomoon.ttf?mh2h47') format('truetype'),
    url('../fonts/social-media/icomoon.woff?mh2h47') format('woff'),
    url('../fonts/social-media/icomoon.svg?mh2h47#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

用gulp缩小后:

@font-face{font-family:icomoon;src:url(fonts/social-media/icomoon.eot?mh2h47);src:url(fonts/social-media/icomoon.eot?mh2h47#iefix)

我如何保留这些相对路径?

1 个答案:

答案 0 :(得分:3)

尝试将rebase选项设置为false(默认值为true),以便cleanCSS不会修改您的路径。

.pipe(cleanCSS( {debug: true, rebase: false} )