Fix public home routing and add home smoke test

This commit is contained in:
2026-07-08 01:22:05 +09:00
parent d38275e9c7
commit 5813130443
3 changed files with 31 additions and 4 deletions
+3 -2
View File
@@ -476,8 +476,9 @@ app.MapHealthChecks("/healthz");
app.MapRazorPages(); // Sitemap.cshtml, Rss.cshtml, Feed.cshtml
app.MapStaticAssets();
// Blazor WebAssembly - prerender 지원
app.MapRazorComponents<TaxBaik.WasmClient.Components.Admin.App>()
// Blazor WebAssembly - 관리자 앱은 /taxbaik/admin 아래에서만 렌더링
app.MapGroup("/taxbaik/admin")
.MapRazorComponents<TaxBaik.WasmClient.Components.Admin.App>()
.AddInteractiveWebAssemblyRenderMode()
.AllowAnonymous();