fix: correct WebAssembly runtime filename for .NET 10
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m14s
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m14s
CRITICAL FIX: .NET 10 changed the WebAssembly bootstrap filename: - Old (Blazor 8): blazor.web.js - New (.NET 10): blazor.webassembly.js PROBLEM SYMPTOMS: - blazor.web.js 404 (file doesn't exist) - Login page blank (WASM runtime never loads) - All admin pages non-interactive SOLUTION: Update TaxBaik.Web.Client/wwwroot/index.html to reference: - FROM: /taxbaik/_framework/blazor.web.js - TO: /taxbaik/_framework/blazor.webassembly.js VALIDATION: - ✅ .NET 10 SDK confirmed (dotnet --version) - ✅ publish-wasm contains blazor.webassembly.js - ✅ WASM assemblies present (Microsoft.AspNetCore.Components.*.wasm) This fix unblocks: 1. Admin login page rendering 2. All interactive WebAssembly pages 3. Login → Dashboard navigation 4. API integration Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
<body class="blazor-dark">
|
||||
<div id="app"></div>
|
||||
|
||||
<script src="/taxbaik/_framework/blazor.web.js"></script>
|
||||
<!-- .NET 10 WebAssembly: blazor.webassembly.js (not blazor.web.js) -->
|
||||
<script src="/taxbaik/_framework/blazor.webassembly.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user