Hello everyone,
We can use base href for relative paths on our apps. It is usage is like following in html<head>
ย <base href="https://www.mydomain.com/images/">
</head>
Also in flutter, I can set the base href in build part like following:
flutter build web --base-href "/path/"
I could not find a way to set base href in Flutter Flow. How to set the base href in Flutter Flow application?
Thanks.