diff options
author | Nolan Lawson <nolan@nolanlawson.com> | 2017-06-23 08:44:55 -0700 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-06-23 17:44:55 +0200 |
commit | e078919f07c3542f8cc6aedc3c554404f328e907 (patch) | |
tree | e4ce023314e4c757ad8583b91132663da986a413 /config | |
parent | 7b13e6efc2402bde71d3bcf69c859ce8974ac9cb (diff) |
Upgrade to Webpack 3 with module concatenation (#3912)
Diffstat (limited to 'config')
-rw-r--r-- | config/webpack/production.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/webpack/production.js b/config/webpack/production.js index 303fca81b..0d2c9acfb 100644 --- a/config/webpack/production.js +++ b/config/webpack/production.js @@ -12,6 +12,7 @@ module.exports = merge(sharedConfig, { stats: 'normal', plugins: [ + new webpack.optimize.ModuleConcatenationPlugin(), new webpack.optimize.UglifyJsPlugin({ sourceMap: true, mangle: true, |