为什么下面的 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)
我怎样才能保留这些相对路径?