I’m developing a flutter web app. I’ve had no problems deploying the myapp/build/web directory and serving it via nginx, although a few emojis are not loaded correctlt.
However, my main issues is that debugging from within Android Studio doesn’t work. Running as follows:
- fails to update myapp/build/web. For example, the pages it serves generates the error
and worse it seems to be serving entirely different files (e.g. FontsManifest.json
) is loaded by chrome attached to the debugger/AndroidStudio) which is never requested when build/web is served via nginx.
What does the debug server actually serve and why is it different to build/web?
(flutter clean; flutter pub get
does not fix this)