Hello,
We are trying to figure out, which is they way to go, and how to compress a flutter web app, that has to be opened in a webview in xamarin or in the browser.
We want the flutter web app, to be compressed as gzip or any other available compression (br compression?) , but we are having trouble figuring out, what the right way to go, and what the optimal setup would be to do it and has it send with that form of encoding.
We also have a lot of other resources in it, such as fonts and png's; Are there any recommended caching strategies for this scenario?
Right now, we have it hosted on a static website which is on blob storage from azure with a azure CDN on it, but we have had multiple failed attempts to have et send as gzip compressed.
We have also looked in (but not tested) to host it as an Azure Static Web App.
Which would be the optimal setup, and how do we actually setup, so that the files are compressed and send over the cdn or other?
TLDR; How do we achieve the best performance, for a flutter web app ( As js) hosted on azure ( regards to caching strategy and compression) ?