Angular 2 / 4 / 5 not working in IE11

后端 未结 22 2353
野的像风
野的像风 2020-11-22 11:07

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

22条回答
  •  青春惊慌失措
    2020-11-22 11:46

    How to resolve this problem in Angular8

    polyfills.ts uncomment import 'classlist.js'; and import 'web-animations-js'; then install two dependency using npm install --save classlist.js and npm install --save web-animations-js.

    update tsconfig.json with "target":"es5",

    then ng serve run the application and open in IE, it will work

提交回复
热议问题