How to use Firebase Serve without triggering my Firebase https Function -
i have created firebase function server side render website seo purposes.
however when use firebase serve
or firebase serve --except functions
function still triggered.
this means way can test deploying , updating https function.
is there way test locally without triggering function?
you can serve functions locally command below;
firebase serve --only functions
this serve functions localhost:5000
. if serve local version can use ngrok , test front-end.
Comments
Post a Comment