Let's say we have a simple Blazor WebAssembly app with the following pages
/index/counter/fetchdataThis app is hosted within an MVC app that has the following routes
/login/logoutThe problem is when trying to navigate to /logout from the Blazor app, it catches the route and show the known page
Sorry, there's nothing at this address
Using the following code to navigate to /login page
_navigationManager.NavigateTo("/login", forceLoad = true);My question: is there any way to escape from Blazor service worker for not-found routes, Or just bypass the navigation to the browser for specific route.
Thanks in advance