Errors: Data path “.builders['app-shell']” should have required property 'class'

前端 未结 20 1558
心在旅途
心在旅途 2020-11-30 19:27

I am getting this error while running my application. Here are the details of my application.

Angular CLI: 7.3.3 
Node: 10.15.1 
Angular: 7.2.7 
@angular-de         


        
20条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-30 20:13

    I was also coming across this issue and for me when doing more updates more issues occurred.

    What worked for me in the end was more or less to remove angular cli and re install it with these steps:

    npm uninstall -g @angular/cli
    npm cache clean --force
    npm install -g @angular/cli
    

    this helped me out source: how to uninstall angular/cli

提交回复
热议问题