skip to Main Content

I am working on a react project in VS Code but whenever I try to connect to firebase functions using the ‘firebase init’ command, it does not show the right project in my email. It’s showing a project in another email of mine.

I cannot remember how or when I linked the project to connect to the email from where it is currently showing projects.

How do I correct my project configuration to connect to the right firebase account so that it can pick the right project?

2

Answers


  1. Run

    firebase logout
    

    And then

    firebase login
    
    Login or Signup to reply.
  2. Simply run:

     firebase logout
    

    Then:

    firebase login
    

    It will ask for your project.

    For reference: CLI administrative commands

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search