当我构建我的Yeoman项目时(没什么特别的,我只使用 jQuery 和 Modernizr),没有显示与 CSS 一起使用的图像。
我的 CSS 代码
.contact {
background:url(../icon-contact.png) no-repeat top center;
}
构建应用程序后的输出(没有区别)
.contact {background:url(../icon-contact.png) no-repeat top center;}
这不起作用,因为 icon-contact.png 的文件名已更改为f91724e0.icon-contact.png。
如何确保在缩小的 CSS 文件中更新图像路径?
编辑:我添加了我的解决方案作为答案