fix: Update index.html to use blazor.web.js (.NET 10)
TaxBaik CI/CD / build-and-deploy (push) Successful in 2m57s
TaxBaik CI/CD / build-and-deploy (push) Successful in 2m57s
ISSUE: - index.html was loading blazor.webassembly.js (outdated .NET 5-8 pattern) - .NET 10 uses blazor.web.js instead - This caused 404 errors when loading admin dashboard FIX: - Change script source from blazor.webassembly.js to blazor.web.js - Matches the actual files deployed in wwwroot/_framework/ RESULT: - Admin login page will now load correctly - Blazor WebAssembly runtime will initialize properly Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
<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>
|
||||
<!-- .NET 10 WebAssembly: blazor.web.js -->
|
||||
<script src="/taxbaik/_framework/blazor.web.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user