From 1467037e62baa964a150eebb00138b0180de3e1f Mon Sep 17 00:00:00 2001 From: Erik Date: Mon, 9 Feb 2026 19:20:54 +0100 Subject: [PATCH] Enable Logging --- Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Program.cs b/Program.cs index 812a385..cc7b722 100644 --- a/Program.cs +++ b/Program.cs @@ -175,6 +175,8 @@ storage.MapGet("/buckets/{bucket}/files/{fileName}/download", async ( return Results.File(stream, contentType, fileName, enableRangeProcessing: true); }); +builder.Services.AddServerSideBlazor() + .AddCircuitOptions(options => options.DetailedErrors = true); app.Run();