diff --git a/SpotifyAPI.Web.Examples/Example.ASP/Program.cs b/SpotifyAPI.Web.Examples/Example.ASP/Program.cs index e43caced..28bd5b4a 100644 --- a/SpotifyAPI.Web.Examples/Example.ASP/Program.cs +++ b/SpotifyAPI.Web.Examples/Example.ASP/Program.cs @@ -21,6 +21,10 @@ namespace Example.ASP .ConfigureWebHostDefaults(webBuilder => { webBuilder.UseStartup(); + }) + .ConfigureAppConfiguration((httpContext, builder) => + { + builder.AddUserSecrets(); }); } }