编译 Angular 应用程序错误
Compile Angular app error
我在使用最新的 ASP.NET 样板(核心 + angular 3.0.0 稳定版)时遇到问题。
首先我在 运行 yarn
时收到此警告。
之后我继续 运行 npm start
并收到此警告以及 webpack 错误(webpack:编译失败)。
网络包错误
我使用了早期版本,它在 yarn
和 npm start
上运行良好。我在这里做错了什么吗?
你运行npm install
安装应用程序的所有依赖包。然后运行再次编译命令:
ng serve
更新
问题是 web-animations-js
包裹丢失。就运行npm install web-animations-js --save
,然后重新编译app。
我在使用最新的 ASP.NET 样板(核心 + angular 3.0.0 稳定版)时遇到问题。
首先我在 运行 yarn
时收到此警告。
之后我继续 运行 npm start
并收到此警告以及 webpack 错误(webpack:编译失败)。
我使用了早期版本,它在 yarn
和 npm start
上运行良好。我在这里做错了什么吗?
你运行npm install
安装应用程序的所有依赖包。然后运行再次编译命令:
ng serve
更新
问题是 web-animations-js
包裹丢失。就运行npm install web-animations-js --save
,然后重新编译app。