diff options
author | geekyd | 2017-10-07 07:20:07 +0530 |
---|---|---|
committer | geekyd | 2017-10-07 07:21:02 +0530 |
commit | 4f53afe92ed281df38921afb5442558a17afc9de (patch) | |
tree | 5230330eaa61badf48def6296d5f4ceef20a0c2f | |
parent | 74a7216a305e2f17f838f4dac416e15699a6f2e9 (diff) |
Increases max_line_len in uglifyjs
Diffstat (limited to '')
-rw-r--r-- | webpack.production.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/webpack.production.js b/webpack.production.js index 7b42843a..a79643b6 100644 --- a/webpack.production.js +++ b/webpack.production.js @@ -17,6 +17,9 @@ module.exports = [Object.assign({}, baseConfig, { compress: { warnings: false }, + output: { + max_line_len: 1000000 + }, mangle: false, sourceMap: false } |