webpack创建包并替换字符串

时间:2017-07-19 10:38:06

标签: webpack webpack-2

我当前的webpack-3 confing从许多angular-1模块创建了bundle.js。

load.js通过require.js加载bundle.js?1234,我需要在每次重建时更改URL查询参数(防止缓存)。

我尝试过string-replace-loader,但它并没有使用简单的配置。因为load.js不在条目文件列表中。

那么如何处理文件但不包含在bundle中?

module.exports = {
context: "/app",
entry: ['source1.js', 'source2.js', 'source3.js'],
output: {
    path: "/dist",
    filename: "bundle.js"
},
plugins: [ new BabiliPlugin() ],
module: {
loaders: [
  {
    test: /load\.js$/,
    loader: 'string-replace-loader',
    query: {
      search: 'bundle.js', // simple test, check it actually run
      replace: '-replaced-'
    }
  }
]}};

1 个答案:

答案 0 :(得分:0)

你只需要这样做:

filename: "[name].[hash].bundle.js"