I have a Flutter web app that uses firebase and I have two firebase projects(dev and prod). I'll like to set up Flavors for this project(just web no mobile).
In mobile, I can use different GoogleService-Info.plist
or google-services.json
files for either flavor but I could not find anyway to do this on the web app as the configuration is done in the index.html
file. Is there any way to do this? Maybe have different HTML files and specify which of them to be bundled while running the app?
Thanks.