使用Webpack 4可以访问我的JavaScript代码中的哈希或contenthash,而不是html吗?

时间:2018-12-07 18:42:21

标签: webpack

如何在代码本身中访问[name]和[contenthash]。

我希望我的loader.js文件引用其他脚本的文件名。

webpack.config.js:

module.exports = {
  entry: {
    app: './src/index.js',
    loader: './src/loader.js'
  },
  output: {
    filename: '[name].[contenthash].js',
    path: path.resolve(__dirname, 'dist')
  },
}

1 个答案:

答案 0 :(得分:0)

添加ExtendedAPIPlugin

new webpack.ExtendedAPIPlugin()

__webpack_hash__是全球性的,您可以在任何地方访问。