I have an existing mvc dotnet 8 core application with many MVC "areas".
Each area is a very specific and has some authorization/access rules and I need to add a new one for some business backoffice.
I am considering using Blazor for this new area. So is it possible to have an entire Blazor SPA (server side rendering (or auto)) on this new area ? Can the routing on this area be handle by blazor routing system ?
I wasn't able to find any Blazor integration with MVC Area support (just basic samples of rendering Blazor components on main/index view).
Any thought / examples / tutorial about this ?
Thanks for any help