Switching Environments
When you are ready to deploy to production all it takes is an environment switch.
firebase use production; # switches all future firebase commands to production
firebase deployOr use the -P flag
firebase -P ${REACT_APP}-production deploy; # Does not switch default environment but still deploys to productionLast updated
Was this helpful?