From 3c36554164a3c3e10c098b4a5a2204168aa505ca Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Sat, 27 Jun 2026 00:23:39 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20Admin=20=EB=A1=9C=EA=B7=B8=EC=9D=B8=20CS?= =?UTF-8?q?S=20=EB=B0=8F=20=EB=B2=84=EC=A0=84=20=ED=91=9C=EC=8B=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - App.razor: Routes에 @rendermode=InteractiveServer 추가 (MudBlazor Static SSR 문제 해결) - _Layout.cshtml: v@(version.Version)으로 Razor 파싱 명시화 Co-Authored-By: Claude Haiku 4.5 --- TaxBaik.Web/Components/Admin/App.razor | 2 +- TaxBaik.Web/Pages/_Layout.cshtml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TaxBaik.Web/Components/Admin/App.razor b/TaxBaik.Web/Components/Admin/App.razor index 7dea8ef..014b97f 100644 --- a/TaxBaik.Web/Components/Admin/App.razor +++ b/TaxBaik.Web/Components/Admin/App.razor @@ -12,7 +12,7 @@ - + diff --git a/TaxBaik.Web/Pages/_Layout.cshtml b/TaxBaik.Web/Pages/_Layout.cshtml index 51ef16a..72562ca 100644 --- a/TaxBaik.Web/Pages/_Layout.cshtml +++ b/TaxBaik.Web/Pages/_Layout.cshtml @@ -57,7 +57,7 @@ @if (Context.RequestServices.GetService(typeof(VersionInfo)) is VersionInfo version) {
- v@version.Version · @version.Built + v@(version.Version) · @version.Built
}