Closed
Description
@jgrund Hi, I'm using a base tag in my seed app. When it's not / it seems to break routing. Is there a way to configure routing to work with a non / base?
In dev mode I want to have a / base, but in prod I want to have a /ui base
It would be nice if seed could account for what the base is and basically remove it from routing configs
Otherwise it seems that I need to conditionally account for what the base is dependant on the environment
Design decisions:
- Where we want to setup router base path? (In
App
builder, get frombase
tag fromhead
, etc.) - Should we change
Url
behaviour? I.e. base path would be trimmed fromUrl::path
. - How does it alter
routing.rs
functions behavior? - How will be
a
tags handled? - ..