Resolving blank page problem of Aurelia app with webpack on Safari
While asking users to test an Aurelia application, it appeared that it didn't work on Safari due to this error:

It comes from the fact that Safari doesn't support the internationalization (window.Intl) API.
In order to solve it, I had to manually include the Intl.js polyfill. Since it …