Browse Source

Fix error page.

pull/470/head
Sebastian 6 years ago
parent
commit
bb7592b226
  1. 2
      backend/src/Squidex/Areas/IdentityServer/Startup.cs

2
backend/src/Squidex/Areas/IdentityServer/Startup.cs

@ -22,7 +22,7 @@ namespace Squidex.Areas.IdentityServer
app.Map(Constants.IdentityServerPrefix, identityApp =>
{
if (!environment.IsDevelopment())
if (environment.IsDevelopment())
{
identityApp.UseDeveloperExceptionPage();
}

Loading…
Cancel
Save