I am trying to deploy to IIS. Not in root but in a sub-folder. This is working:
- edit web/index.html, change
<base href="/">to<base href="/ChangeTag/"> - run flutter build web command
- the build/web/index.html is ok, with the new changes.
Perfect!
BUT, when I try to debug using localhost: web pages does not found - error 404
What I want is to deploy (automatically), inside a sub-folder of wwwroot and execute local test too, without modifying index.html a lot of times
Is it possible to do something like in Angular, use proxies, use different build configs, etc?
Thanks