## 문제 _ViewStart.cshtml이 없어서 _Layout.cshtml이 렌더링되지 않음 → CSS/JS가 HTML에 포함되지 않음 → 스타일 미적용 상태 ## 해결 _ViewStart.cshtml 생성하여 Layout 전역 설정 → 모든 Razor Pages가 _Layout.cshtml을 상속받음 → CSS/JS 정상 로드 Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
@{
|
||||
Layout = "_Layout";
|
||||
}
|
||||
Reference in New Issue
Block a user