From 58ab7f44fa660552a5a93c550d014e9c50c998ee Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Fri, 3 Jul 2026 02:41:59 +0900 Subject: [PATCH] feat: add WebAssembly client wwwroot/index.html - fix runtime loading 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 --- TaxBaik.Web.Client/wwwroot/index.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 TaxBaik.Web.Client/wwwroot/index.html diff --git a/TaxBaik.Web.Client/wwwroot/index.html b/TaxBaik.Web.Client/wwwroot/index.html new file mode 100644 index 0000000..e618e7a --- /dev/null +++ b/TaxBaik.Web.Client/wwwroot/index.html @@ -0,0 +1,17 @@ + + + + + + TaxBaik - 관리자 대시보드 + + + + + + +
+ + + +