Add dockerized host deploy flow and fix Blazor static boot assets

This commit is contained in:
Joseph Doherty
2026-02-06 17:44:46 -05:00
parent dd18a05408
commit 4e56ea3435
27 changed files with 777 additions and 1 deletions
@@ -0,0 +1 @@
/* Intentionally present to avoid 404 when no CSS isolation bundle is generated. */
+1 -1
View File
@@ -37,7 +37,7 @@
<!-- Radzen Blazor JS -->
<script src="_content/Radzen.Blazor/Radzen.Blazor.js"></script>
<script src="_framework/blazor.webassembly#[.{fingerprint}].js"></script>
<script src="_framework/blazor.webassembly.js"></script>
</body>
</html>
+2
View File
@@ -96,6 +96,8 @@ try
// Configure Web API middleware (authentication, authorization, controllers, SignalR hub)
app.UseWebApi();
// .NET 10 static asset endpoint mapping supports fingerprinted Blazor assets.
app.MapStaticAssets();
app.MapRazorPages();
app.MapFallbackToFile("index.html");