我的 CopyWebpackPlugin 都按预期工作,但出于版本控制的原因,我想在构建时在index.html
中使用它在生成时生成的哈希。
webpack.config.prod.js
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../src/static/js'),
to: config.build.assetsSubDirectory + '/js/myFile.[hash].js'
}
])
在我的index.html
中,而不是
var MY_SNIPPET='/path/static/js/myFile.js';
我希望它也包含上面生成的哈希值
var MY_SNIPPET='/path/static/js/myFileWithTheHash.js';
我曾在诸如 webpack.chunks 之类的各个地方查看过,但是找不到。