I am using firebase hosting to host my flutter web app. Everytime I run firebase deploy
or flutter deploy --only hosting
, it builds the web app using flutter build web
. How to give arguments to flutter build web
here.
While deploying, I want to build my app with these arguments : flutter build web --web-renderer html --release
to solve network image error.
OR
Is there any way I can tell firebase deploy to stop running flutter build web
and just use existing build which I created using the arguments of my choice.