iOS Safari Dashboard Empty
Closed this issue · 4 comments
kellyho67 commented
rlightner commented
Fixed. Due to an issue with Webpack and Safari 10.3.3 / ES6
kellyho67 commented
Very good.. I have not been hit by that bug yet on ES6 or my configs for webpack but good find!
rlightner commented
This is what I ended up having to use.
new UglifyJsPlugin({ parallel: true, sourceMap: true, uglifyOptions: { mangle: { safari10: true }, warnings: false } })
kellyho67 commented
Thanks for the info, I just placed it in my notes for my webpack config just in case!