Webpack plugin for repath assets with hash in outputs multiple html
- replace multiple html ressets with hash
$ npm i --save html-webpack-hashfix-plugin
Add new plugin instance to your webpack
config
import HtmlHashFix from 'html-webpack-hashfix-plugin';
const compiler = webpack({
plugins: [
new HtmlHashFix({
separator: '-',
prefixPath: '',
})
]
});
The plugin accepts the following options:
- separator: separator of fileName and hashCode; 文件名和 hash 值的分隔符。
- prefixPath: add prefixPath for html assets path; 可以给 html 引用的静态文件自定义前缀路径。
MIT
- webpack chunkhash code in local are not as same as travis-ci, you can run test case in local.