Files
taxbaik/tests/e2e
kjh2064 8db3c1d220
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m14s
fix: correct WebAssembly runtime filename for .NET 10
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>
2026-07-03 03:06:34 +09:00
..