For a single page app, we want to be able to route all otherwise-unhandled requests to the index in order to handle routing client-side.
Previously, we would add routes using MapRoute() as detailed in this answer, however, this doesn't seem to work when using a Razor Page as our index.
How do we create a fallback to a Razor Pages index?