fix: remove HeadOutlet to eliminate duplicate Blazor runtime script reference
TaxBaik CI/CD / build-and-deploy (push) Successful in 3m25s

Problem: App.razor now explicitly loads blazor.webassembly.js, but HeadOutlet
component was still auto-generating a <script> tag for blazor.web.js (legacy
filename). This caused two different script references to coexist.

Solution: Remove HeadOutlet since we're now explicitly managing the Blazor
runtime script reference. All necessary styles and metadata are already defined.

Result: Single, authoritative script reference to blazor.webassembly.js.

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-07-03 12:26:24 +09:00
parent dda600d4e1
commit 29a633e5fc
@@ -19,7 +19,6 @@
window.location.pathname.toLowerCase().endsWith('/admin/login'));
</script>
<link rel="stylesheet" href="css/admin.css" />
<component type="typeof(HeadOutlet)" render-mode="InteractiveWebAssembly" />
</head>
<body>
<div id="components-reconnect-modal" class="admin-reconnect-modal">