From 25095bbdc4e8333f13195b02e14a91dc9823909f Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Fri, 26 Jun 2026 19:02:14 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=5FViewStart.cshtml=20=EC=83=9D=EC=84=B1?= =?UTF-8?q?=20-=20Layout=20=EB=A0=8C=EB=8D=94=EB=A7=81=20=EB=B3=B5?= =?UTF-8?q?=EA=B5=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 문제 _ViewStart.cshtml이 없어서 _Layout.cshtml이 렌더링되지 않음 → CSS/JS가 HTML에 포함되지 않음 → 스타일 미적용 상태 ## 해결 _ViewStart.cshtml 생성하여 Layout 전역 설정 → 모든 Razor Pages가 _Layout.cshtml을 상속받음 → CSS/JS 정상 로드 Co-Authored-By: Claude Haiku 4.5 --- TaxBaik.Web/Pages/_ViewStart.cshtml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 TaxBaik.Web/Pages/_ViewStart.cshtml diff --git a/TaxBaik.Web/Pages/_ViewStart.cshtml b/TaxBaik.Web/Pages/_ViewStart.cshtml new file mode 100644 index 0000000..820a2f6 --- /dev/null +++ b/TaxBaik.Web/Pages/_ViewStart.cshtml @@ -0,0 +1,3 @@ +@{ + Layout = "_Layout"; +}