summaryrefslogtreecommitdiff
path: root/webpack
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-05-25 15:39:26 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-05-25 15:39:26 +0900
commit7f292a65e1c1101fa1d0aede218aa46b0518f9cd (patch)
tree51c5349dd8cbe531846d85c1623763f87494d3ef /webpack
parent[Client] Fix style (diff)
downloadsharkey-7f292a65e1c1101fa1d0aede218aa46b0518f9cd.tar.gz
sharkey-7f292a65e1c1101fa1d0aede218aa46b0518f9cd.tar.bz2
sharkey-7f292a65e1c1101fa1d0aede218aa46b0518f9cd.zip
Use uglify-es-webpack-plugin to fix Safari/iOS issue
Diffstat (limited to 'webpack')
-rw-r--r--webpack/plugins/minify.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/webpack/plugins/minify.ts b/webpack/plugins/minify.ts
index 78c587afea..ec4c9b3405 100644
--- a/webpack/plugins/minify.ts
+++ b/webpack/plugins/minify.ts
@@ -1,3 +1,3 @@
-const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
+const UglifyEsPlugin = require('uglify-es-webpack-plugin');
-export default () => new UglifyJSPlugin();
+export default () => new UglifyEsPlugin();