Let’s say we have a simple Blazor WebAsswmbly app with the following pages
/index
/counter
/fetchdata
This app is hosted within an MVC app that has the following routes
/login
/logout
The 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.
.
My question is Is there anyway to escape from Blazor service worker for not-found routes, Or just bypass the navigation to the browser for specific route.
Thanks in advance