From ddea10f31009c4da2974aa4798260d83f6b08d08 Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Sat, 4 Jul 2026 14:11:28 +0900 Subject: [PATCH] fix: remove unsupported razor components registration --- src/TaxBaik.Web/Program.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/TaxBaik.Web/Program.cs b/src/TaxBaik.Web/Program.cs index 4f59d64..38396bf 100644 --- a/src/TaxBaik.Web/Program.cs +++ b/src/TaxBaik.Web/Program.cs @@ -392,12 +392,6 @@ app.MapHealthChecks("/healthz"); app.MapRazorPages(); // Sitemap.cshtml, Rss.cshtml, Feed.cshtml app.MapStaticAssets(); -// Blazor WebAssembly Admin Client -app.MapRazorComponents() - .AddInteractiveWebAssemblyRenderMode() - .AddAdditionalAssemblies(typeof(TaxBaik.WasmClient._Imports).Assembly) - .AllowAnonymous(); - // SPA 라우팅 폴백 (가장 마지막에!) app.MapFallbackToFile("admin/{*path:nonfile}", "admin/index.html"); app.MapFallbackToFile("portal/{*path:nonfile}", "portal/index.html");