[Vuejs]-Unable to install firebase through npm

0👍

Delete node_modules folder, go to package.json file add "firebase": "^7.7.0", in dependencies. You can which ever version is required.
Then run command npm install.
If this doesn’t work check node js version. Check if your node js version is supported or not by firebase version which is intalled.

Leave a comment