WEB fixes
All checks were successful
Build Docker Images / test (push) Successful in 1m15s
Build Docker Images / build-and-push (push) Successful in 1m39s

This commit is contained in:
2025-11-19 13:11:07 +01:00
parent ae5db26479
commit ec4b79bbc6
2 changed files with 3 additions and 1 deletions

View File

@@ -25,9 +25,10 @@ if (!app.Environment.IsDevelopment())
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseAntiforgery();
app.MapStaticAssets();
app.MapGet("/health", () => Results.Ok(new { status = "OK", timestamp = DateTime.UtcNow }));
app.MapRazorComponents<App>()