fix: remove Portal MapRazorComponents registration (not implemented)
TaxBaik CI/CD / build-and-deploy (push) Failing after 4m58s

Keep only Admin WASM client registration with correct namespace:
- TaxBaik.WasmClient.Components.Admin.App
- TaxBaik.WasmClient._Imports

Remove Portal client registration since Portal.Client is not configured
for WASM rendering.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-07-04 14:03:44 +09:00
parent 33aa2adaea
commit a9454e2e31
+3 -8
View File
@@ -393,15 +393,9 @@ app.MapRazorPages(); // Sitemap.cshtml, Rss.cshtml, Feed.cshtml
app.MapStaticAssets(); app.MapStaticAssets();
// Blazor WebAssembly Admin Client // Blazor WebAssembly Admin Client
app.MapRazorComponents<TaxBaik.Web.Client.Components.Admin.App>() app.MapRazorComponents<TaxBaik.WasmClient.Components.Admin.App>()
.AddInteractiveWebAssemblyRenderMode() .AddInteractiveWebAssemblyRenderMode()
.AddAdditionalAssemblies(typeof(TaxBaik.Web.Client._Imports).Assembly) .AddAdditionalAssemblies(typeof(TaxBaik.WasmClient._Imports).Assembly)
.AllowAnonymous();
// Portal WASM Client
app.MapRazorComponents<TaxBaik.Portal.Client.Components.App>()
.AddInteractiveWebAssemblyRenderMode()
.AddAdditionalAssemblies(typeof(TaxBaik.Portal.Client._Imports).Assembly)
.AllowAnonymous(); .AllowAnonymous();
// SPA 라우팅 폴백 (가장 마지막에!) // SPA 라우팅 폴백 (가장 마지막에!)
@@ -426,3 +420,4 @@ finally
Log.Information("애플리케이션 종료"); Log.Information("애플리케이션 종료");
Log.CloseAndFlush(); Log.CloseAndFlush();
} }