0

当我尝试在 CLI 上运行以下命令时收到以下错误:

ng generate component [component-name]

我不断得到:

Cannot read property 'sourceRoot' of undefined

我猜我是在更新我使用的 Angular 版本后开始获得它的。无法读取未定义的属性“sourceRoot”

解决方法见回复。

4

1 回答 1

0

为了解决这个问题,我不得不去我的 Angular.json 文件夹。

  1. 搜索“e2e”
  2. 将“根”从“e2e/”更新为“/”。该位置在“[项目名称]-e2e”下

在此处输入图像描述

更新后,我能够运行命令

ng generate component [component-name]

没有出现任何问题

ng 生成组件产品搜索

于 2018-11-28T19:55:33.263 回答