搜索

首页  >  问答  >  正文

javascript - webpack 如何将本次构建的hash值挂到全局供js代码使用呢?

我使用webpack构建时 想要把hash值存到全局变量中 其他模块的js可以调用到。试着配了下 只有放到文件名中 比如output: 'a[hash].js'才有效果 但这样并没有存到全局变量中 项目中的js无法调用到。试着放在new webpack.DefinePlugin中 但拿不到hash值 求大神们支招

为情所困为情所困2751 天前538

全部回复(1)我来回复

  • 为情所困

    为情所困2017-05-19 10:43:55

    刚才看了一下文档和源码,提供一个思路吧

    你想获取 output.filename 中设置的 [name].[hash].bundle.js

    The following substitutions are available in template strings (via
    webpack's internal TemplatedPathPlugin):

    可以试试 TemplatedPathPlugin 或者扩展 TemplatedPathPlugin。

    回复
    0
  • 取消回复