aboutsummaryrefslogtreecommitdiffhomepage
path: root/client
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-12-09 17:29:19 +0100
committerChocobozzz <florian.bigard@gmail.com>2016-12-09 17:29:19 +0100
commit408c7137c657dc2b240f2c4c465d55180060ee83 (patch)
tree5853b7f8aa01701a545f3fc246c2e2c305798d51 /client
parente7661bb1345901dc6a7408ec1a69bbc9f107632c (diff)
downloadPeerTube-408c7137c657dc2b240f2c4c465d55180060ee83.tar.gz
PeerTube-408c7137c657dc2b240f2c4c465d55180060ee83.tar.zst
PeerTube-408c7137c657dc2b240f2c4c465d55180060ee83.zip
Client: do not emit warnings when uglify client
Diffstat (limited to 'client')
-rw-r--r--client/config/webpack.prod.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/config/webpack.prod.js b/client/config/webpack.prod.js
index 98507ff8e..447d47415 100644
--- a/client/config/webpack.prod.js
+++ b/client/config/webpack.prod.js
@@ -159,7 +159,8 @@ module.exports = function (env) {
159 keep_fnames: true 159 keep_fnames: true
160 }, // prod 160 }, // prod
161 compress: { 161 compress: {
162 screw_ie8: true 162 screw_ie8: true,
163 warnings: false
163 }, // prod 164 }, // prod
164 comments: false // prod 165 comments: false // prod
165 }), 166 }),