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();