error NG6002: Appears in the NgModule.imports of AppModule, but could not be resolved to an NgModule class

后端 未结 25 2134
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-13 12:43

First time using firestore and I\'m getting this error. It seems to be a problem with Ivy, from my research. I don\'t have a lot of experience modifying tsconfig.app.json, w

25条回答
  •  旧巷少年郎
    2020-12-13 13:05

    I have faced the same issue in Ubuntu because the Angular app directory was having root permission. Changing the ownership to the local user solved the issue for me.

    $ sudo -i
    $ chown -R : 
    $ exit 
    $ cd 
    $ ng serve
    

提交回复
热议问题