I have an website developed in .net 8.0 blazor server side model.
In my app i have specified base href in app.razor file
<base href="/myapp/" />
it does append the myapp in images and css files but when it comes to c# ,
NavigationManager.NavigateTo("SomeRoute")
, it completely ignore base href value
for example
www.xyz.com/myapp is my website
Than NavigationManager.NavigateTo(“Home”) should result in
www.xyz.com/myapp/Home
Instead it results in
www.xyz.com/Home
Any clue why this is happening ?