diff --git a/src/TaxBaik.Web/Program.cs b/src/TaxBaik.Web/Program.cs index 266e2fe..4f59d64 100644 --- a/src/TaxBaik.Web/Program.cs +++ b/src/TaxBaik.Web/Program.cs @@ -393,15 +393,9 @@ app.MapRazorPages(); // Sitemap.cshtml, Rss.cshtml, Feed.cshtml app.MapStaticAssets(); // Blazor WebAssembly Admin Client -app.MapRazorComponents() +app.MapRazorComponents() .AddInteractiveWebAssemblyRenderMode() - .AddAdditionalAssemblies(typeof(TaxBaik.Web.Client._Imports).Assembly) - .AllowAnonymous(); - -// Portal WASM Client -app.MapRazorComponents() - .AddInteractiveWebAssemblyRenderMode() - .AddAdditionalAssemblies(typeof(TaxBaik.Portal.Client._Imports).Assembly) + .AddAdditionalAssemblies(typeof(TaxBaik.WasmClient._Imports).Assembly) .AllowAnonymous(); // SPA 라우팅 폴백 (가장 마지막에!) @@ -426,3 +420,4 @@ finally Log.Information("애플리케이션 종료"); Log.CloseAndFlush(); } +