Closed
Description
When deployed to production a Blazor Web App will redirect server errors using app.UseExceptionHandler("/Error");
. But there is nothing listening at /Error so you end up with a 404. Typically the error page is handled by a Razor Page, but in a Blazor Web App it should be a Blazor component page.