Search code examples
firebasehostingfirebase-hosting

Can you move a firebase hosting site to a different project?


So, I was wondering, is it possible to move a firebase hosting site to a different project?.

I searched through the documentation, but I dont see anything anywhere that says how to do it, or if it is even possible


Solution

  • There is no built-in operation to move to a new project. But if you're deploying with the Firebase CLI, you can run:

    firebase use <new project ID>
    

    And then:

    firebase deploy
    

    To deploy the same content to the other project.