I'm starting with Firebase Hosting, I made a static website with some Javascript elements. I have a simple question that I did not find clear information in the Firebase documentation: how would I edit my static site? Whether to change some information, or upload a new page? Do I deploy all over again like the first time I uploaded the site?
To make changes to a deployed Firebase Hosting website, you should make the necessary changes to your local copy and then run firebase deploy
again.
Each time you run firebase deploy
after making a change, the following steps (amongst others) are performed automatically:
This is useful because the full history of your deploys are kept on Firebase Hosting so that you can rollback to a previous version should you need to.