默认模板没有启用IE浏览器支持
ng serve启动项目后,用IE浏览器打开为空白页
解决
- 修改browserslist,去掉前面的not
not IE 9-11 # For IE 9-11 support, remove 'not'.
- 修改src/polyfill.ts,取消以下两行注释
import 'classlist.js';
import 'web-animations-js';
- 安装依赖
npm install --save classlist.js
npm install --save web-animations-js
- 修改tsconfig.json
将"target": "es2015"修改为如下
"target": "es5",