我们可以在 grunt 构建期间更改 grunt 中的链接,这些链接主要是本地的生产链接吗?
例如
.a-container {
background: url(../images/hello.jpg) no-repeat top center;
background-size: 100%;
}
构建后它应该看起来像
.a-container {
background: url(http://hello.com/blah/blah/hello.jpg) no-repeat top center;
background-size: 100%;
}
我们有可以在 grunt 文件中配置的 URL。