Reputation: 3792
I have a pwa in firebase and I would like to make it visible only sometimes. How can I take a firebase site offline without deleting the site?
Upvotes: 2
Views: 838
Reputation: 1440
According to the Firebase CLI reference, you can use the hosting:disable
command to temporarily disable your site.
Link to the section in the CLI docs: https://firebase.google.com/docs/cli#hosting-commands
Upvotes: 3