Can I cleanly delete firebase CLI project?

25,806

Solution 1

You should delete firebase.json and .firebaserc if it exists. Once those files are deleted you should be good to go.

Solution 2

I am using the following command

npm uninstall firebase 

and

npm uninstall angularfire2

it works for me

Share:
25,806

Related videos on Youtube

Script Kitty
Author by

Script Kitty

https://github.com/Graystripe17

Updated on June 12, 2021

Comments

  • Script Kitty
    Script Kitty almost 3 years

    I ran firebase init in the wrong directory and it is connected to my project. To undo that, can I just delete ./firebase.json and my_newly_created_folder_name/ from the terminal? Thanks

    • mesqueeb
      mesqueeb over 6 years
      I had the same problem. Firebase CLI should add an option to remove/reset/ or re-initialize a project in a new folder.
  • WhooNo
    WhooNo almost 2 years
    Thank you! worked for me to solve this problem: stackoverflow.com/questions/72104731/…