// webpack
output: {
publicPath: '/build/[hash]/'
}
// some js
import './a.less'
import './b.less'
然后获取构建的css文件:
// main.a4bf602c.css
.page-a {
background-image: url(/build/6c93287e0b98/imgs/bg-a.png); // the hash is 6c93287e0b98
}
.page-b {
background-image: url(/build/41ca954170df/imgs/bg-b.png); // the hash is 41ca954170df
}
构建的 css 文件中 url 中的哈希值不同。如何让他们一样。
谢谢!