ERROR in TypeError: Cannot read property 'flags' of undefined

后端 未结 4 1745
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-02 22:29

I have a problem when I try to run ng serve on a recently created Angular project. The version I\'m using is 9.1.4, this error does not occur on a project with

4条回答
  •  遥遥无期
    2020-12-02 23:04

    edit

    If you use angular 9.1.6 it should be fine now

    npm update @angular/cli @angular/core
    

    original post

    Something is broken in Angular 9.1.5 - if you run the following it should work:

    npm install @angular/core@9.1.4 @angular/animations@9.1.4 @angular/common@9.1.4 @angular/forms@9.1.4 @angular/platform-browser@9.1.4 @angular/router@9.1.4 @angular/platform-browser-dynamic@9.1.4 @angular/compiler@9.1.4 @angular/compiler-cli@9.1.4 @angular/language-service@9.1.4
    
    ng build
    

    Just spent about 4-5 hours trying to fix it myself...

    The issue seems to stem from using Angular CLI 9.1.4 with Angular 9.1.5 (most likely the compiler

    You'll see the issue when you do

    ng --version
    

    if you get:

    Angular CLI: 9.1.4
    Node: 12.16.3
    OS: win32 x64
    
    Angular: 9.1.5
    ... animations, cli, common, compiler, compiler-cli, core, forms
    ... language-service, platform-browser, platform-browser-dynamic
    ... router
    Ivy Workspace: Yes
    

    Then you will need to follow the npm installs i listed above

提交回复
热议问题