Skip to content
Merged

Deploy #1767

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/web/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ private static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseSentry();
webBuilder.UseStartup<Startup>();
});
}
1 change: 0 additions & 1 deletion apps/web/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,6 @@ public void Configure(IApplicationBuilder app, IServiceProvider serviceProvider,
app.UseExceptionHandler("/Error");
app.UseForwardedHeaders();
app.UseStaticFilesWithCaching();
app.UseSentryTracing();
}

app.UseStatusCodePagesWithReExecute("/error", "?statusCode={0}");
Expand Down
Loading