8db3c1d220
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>
19 lines
703 B
HTML
19 lines
703 B
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>TaxBaik - 관리자 대시보드</title>
|
|
<base href="/taxbaik/" />
|
|
<link rel="icon" type="image/svg+xml" href="/taxbaik/favicon.svg" />
|
|
<link rel="stylesheet" href="/taxbaik/css/admin.css" />
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet" />
|
|
</head>
|
|
<body class="blazor-dark">
|
|
<div id="app"></div>
|
|
|
|
<!-- .NET 10 WebAssembly: blazor.webassembly.js (not blazor.web.js) -->
|
|
<script src="/taxbaik/_framework/blazor.webassembly.js"></script>
|
|
</body>
|
|
</html>
|