I dividing my website into multiple blazor apps in which each module should be routed by a sub path eg: products module should be accessed by the url "domain/products" etc.
so in the configure method in my asp.net core server project when calling
app.UseBlazor<Products.Startup>()
whats the proper way to rout all the single page app url through "domain/products/*"
thanks