fix: configure Blazor WebAssembly admin UI and fix middleware pipeline
TaxBaik CI/CD / build-and-deploy (push) Failing after 3m1s
TaxBaik CI/CD / build-and-deploy (push) Failing after 3m1s
- Add index.html entry point for WASM client - Deploy 450+ WASM assembly files to wwwroot/admin - Remove problematic UseBlazorFrameworkFiles middleware - Fix static file serving for framework JS/WASM resources - Update middleware ordering for proper static file handling - Login page now loads and serves admin dashboard Changes verified with server logs showing successful WASM file serving at 200 status with proper gzip compression. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -3,17 +3,21 @@
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>TaxBaik - 관리자 대시보드</title>
|
||||
<!-- Admin SPA는 /admin/ 경로에서 호스팅 -->
|
||||
<base href="/admin/" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="stylesheet" href="/css/admin.css" />
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet" />
|
||||
<title>TaxBaik Admin</title>
|
||||
<base href="/taxbaik/admin/" />
|
||||
<link href="_framework/bootstrap/bootstrap.min.css" rel="stylesheet" />
|
||||
<link href="app.css" rel="stylesheet" />
|
||||
<link href="TaxBaik.Web.Client.styles.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body class="blazor-dark">
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
||||
<!-- Standalone Blazor WebAssembly -->
|
||||
<div id="blazor-error-ui">
|
||||
<p>An unhandled exception has occurred. See browser console for details.</p>
|
||||
<a href="" class="reload">Reload</a>
|
||||
<a class="dismiss">🗙</a>
|
||||
</div>
|
||||
|
||||
<script src="_framework/blazor.webassembly.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user