rlightner/public-BrewStatus

iOS Safari Dashboard Empty

Closed this issue · 4 comments

when using Safari on iOS I'm getting a blank dashboard.. I have tested with an iOS Simulator as well as my phone iOS 10.3.3.

In a responsive view set in chome with the emulator on Mobile layout the Dashboard renders fine.

iOS Simulator shows only a blank dashboard also.
cursor_and_glass_and_iphone_se_ ios_10_3__14e8301

Fixed. Due to an issue with Webpack and Safari 10.3.3 / ES6

webpack-contrib/uglifyjs-webpack-plugin#92

Very good.. I have not been hit by that bug yet on ES6 or my configs for webpack but good find!

This is what I ended up having to use.

new UglifyJsPlugin({ parallel: true, sourceMap: true, uglifyOptions: { mangle: { safari10: true }, warnings: false } })

Thanks for the info, I just placed it in my notes for my webpack config just in case!