添加tsconfig-es5.app.json后Angular不支持IE中的引导

时间:2019-07-02 14:18:50

标签: angular

我按照(https://github.com/angular/angular-cli/issues/14455)的步骤进行了操作,以使Angular 8应用程序在IE中正常工作。在此之后,当我运行npm bootstrap和jquery时,它没有反映出预期的效果。

我用所需的路径更新了angular.json中的“样式”:[]和“脚本”:[]数组。

http://localhost:4200/的输出看起来很普通,没有引导程序。

当我在不添加tsconfig的情况下运行项目时,Bootstrap可以运行,但IE显示黑屏

1 个答案:

答案 0 :(得分:0)

您已安装了软件包,但还需要编辑angular.json并添加包含引导路径的行。这不会自动发生。

"styles": [
  "src/styles.css",
  "node_modules/bootstrap/dist/css/bootstrap.min.css"
],