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

@@ -9,6 +9,7 @@
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />
<link href="DiunaBI.UI.Web.styles.css" rel="stylesheet" />
<link rel="icon" type="image/png" href="favicon.png" />
<script src="https://accounts.google.com/gsi/client" async defer></script>
<HeadOutlet />
</head>

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