I am trying to figure out why my angular 2 app is stuck on showing Loading... when running in IE 11.
Following someone\'s suggestion, I\'ve tried this plunker, poste
If you have still problems that not all JavaScript functions are working add this line in your polyfills. It fixes the missing ‘values’ method:
import 'core-js/es7/object';
And this line fixes the missing ‘includes’ method:
import 'core-js/es7/array'