I have a project I that was dropped onto my lap written in 0.18, when ran it keeps changing the url from a sub url we currently load it from to the base url of the page, for example the elm application is loaded via http://example.com/dah/dah/elm#welcome
. After application renders the url switches to http://example.com/#welcome
. I would like to make sure the application stays at the url it was loaded at like http://example.com/dah/dah/elm#welcome
and not http://example.com/#welcome
. Would appreciate anyones feedback if possible
I thought there would be a simple config that would allow me to just say have the application run from base url http://example.com/dah/dah/
, I could not find anything, I also looked at documentation https://dmy.fr/elm-0.18-packages/ specific for 0.18, navigation https://package.elm-lang.org/packages/elm-lang/navigation/2.1.0. Not quite sure if that was the right link. I could not find anything relevant.