I have an existing ASP.NET Core 8 MVC application with many "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