58ab7f44fa
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m8s
Problem: TaxBaik.Web.Client lacked wwwroot/index.html, preventing browser from loading the WebAssembly application. This caused Blazor runtime (blazor.web.js) to be missing from deployed package. Solution: Create wwwroot/index.html as the entry point for WebAssembly runtime. This file: - Serves as HTML shell for interactive Razor components - References /taxbaik/_framework/blazor.web.js to bootstrap WASM runtime - Inherits all styles and scripts from host /taxbaik path Result: Blazor WebAssembly runtime now loads correctly, enabling all interactive admin pages and components. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
18 lines
619 B
HTML
18 lines
619 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>
|
|
|
|
<script src="/taxbaik/_framework/blazor.web.js"></script>
|
|
</body>
|
|
</html>
|