Angular9: ERROR in The target entry-point “@angular/fire/auth” has missing dependencies

前端 未结 5 1219
别那么骄傲
别那么骄傲 2021-02-18 20:27

When I run npm run start I get the below error regarding firebase.

Tech: Angular version 9, Firebase, Firestore, Geofirestore Angular CLI.

5条回答
  •  庸人自扰
    2021-02-18 20:50

    Just update/install Firebase in your project (locally, not globally). Using the terminal go to the project folder and execute:

    npm install firebase@latest
    

    Current versions of npm uses --save flag as default, so it will change package.json automatically.

提交回复
热议问题