标签: node.js npm gulp
在使用Gulp.js构建项目的前端时,来自 bower_components 的CSS文件会引用具有相对路径的图像和字体 - 如何重写为绝对路径?< / p>
例如,输入文件包含一些内容:
.info{ background: url(themes/assets/hello.png) }
输出文件:
.info{ background: url(/static/img/hello.png) }
此外,引用某些CDN的URL未更改。
怎么做?