From 7329d75ec8627639daf08e9c8c1a027eaf760d3c Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Mon, 2 Mar 2020 20:24:56 -0500 Subject: enable detailed errors by default to simplify diagnosing issues --- src/SMAPI.Web/Startup.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/SMAPI.Web/Startup.cs') diff --git a/src/SMAPI.Web/Startup.cs b/src/SMAPI.Web/Startup.cs index 29086472..56ef9a79 100644 --- a/src/SMAPI.Web/Startup.cs +++ b/src/SMAPI.Web/Startup.cs @@ -192,8 +192,7 @@ namespace StardewModdingAPI.Web public void Configure(IApplicationBuilder app, IHostingEnvironment env) { // basic config - if (env.IsDevelopment()) - app.UseDeveloperExceptionPage(); + app.UseDeveloperExceptionPage(); app .UseCors(policy => policy .AllowAnyHeader() -- cgit