diff --git a/deploy_gb.sh b/deploy_gb.sh index c95ddd7..c2b4001 100644 --- a/deploy_gb.sh +++ b/deploy_gb.sh @@ -68,6 +68,7 @@ cd "$DEPLOY_DIR" export ASPNETCORE_ENVIRONMENT=Production export ASPNETCORE_URLS="http://127.0.0.1:$TARGET_PORT" export ConnectionStrings__Default="Host=localhost;Database=taxbaikdb;Username=taxbaik;Password=taxbaik123" +export ApiClient__BaseUrl="http://127.0.0.1:$TARGET_PORT/taxbaik/api/" export DOTNET_PRINT_TELEMETRY_MESSAGE=false # Run dotnet process diff --git a/src/TaxBaik.Web/Components/Admin/App.razor b/src/TaxBaik.Web/Components/Admin/App.razor index 7684043..d1bf472 100644 --- a/src/TaxBaik.Web/Components/Admin/App.razor +++ b/src/TaxBaik.Web/Components/Admin/App.razor @@ -42,18 +42,6 @@ if (!document.documentElement.classList.contains('admin-login-route')) { var loadingOverlay = document.getElementById('blazor-loading'); if (loadingOverlay) loadingOverlay.classList.add('show'); - - // WASM 부팅 타임아웃 (30초): 강제로 로딩 숨김 - window._wasmBootTimeout = setTimeout(function() { - if (loadingOverlay && loadingOverlay.classList.contains('show')) { - console.warn('[Admin] WASM boot timeout - forcing hideLoading'); - if (window.taxbaikAdminSession && window.taxbaikAdminSession.hideLoading) { - window.taxbaikAdminSession.hideLoading(); - } else { - loadingOverlay.classList.remove('show'); - } - } - }, 30000); // 30초 후 강제 숨김 }