Include polyfills and patches
You have two choices for getting the polyfills and patches into your JavaScript runtime:
-
Import them into your top-level app file, which adds all polyfills to all browser requests (lower difficulty; slower performance).
-
Include them in your Webpack config, and conditionally include them (higher difficulty; higher performance).