By default a Razor Page app goes to Home/Index
Is there a way to change this to Home/App?
This is quite easy in MVC, but Razor pages using a different routing
In my case the ambiguity was caused by Pages/Index.cshtml left in project. This worked:
Pages/Index.cshtml
options.Conventions.AddPageRoute("/App", "");