Angular6 在构建生产站点时出错
Angular6 getting error when building site for production
我使用的是 Angular: 6.0.3,当我使用 npm update 更新我的 angular 时,我在尝试构建生产站点时遇到错误。
当我运行命令时:
ng build --prod
我遇到错误:
ERROR in ./src/app/app.module.ngfactory.js Module build failed: TypeError: Cannot read property '_statSync' of undefined
当前 angular 版本是:6.1.10
您可以在此处查看完整错误:Full error report link
该错误是由于 package.json 文件中缓存加载程序的版本。只是 运行 npm update
你会得到缓存加载器 1.2.5 他们已经在更新版本中修复了这个问题。
我使用的是 Angular: 6.0.3,当我使用 npm update 更新我的 angular 时,我在尝试构建生产站点时遇到错误。
当我运行命令时:
ng build --prod
我遇到错误:
ERROR in ./src/app/app.module.ngfactory.js Module build failed: TypeError: Cannot read property '_statSync' of undefined
当前 angular 版本是:6.1.10
您可以在此处查看完整错误:Full error report link
该错误是由于 package.json 文件中缓存加载程序的版本。只是 运行 npm update
你会得到缓存加载器 1.2.5 他们已经在更新版本中修复了这个问题。