在构建时使用CopyWebpackPlugin的哈希

时间:2019-12-20 17:10:56

标签: javascript webpack

我的 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 之类的各个地方查看过,但是找不到。

0 个答案:

没有答案