fix: 부품 마스터 서브 탭 복구 및 모바일 QR 코드 접근 시 Nginx 라우팅 오류 해결

- 부품 마스터 페이지 내 상단 헤더(.page-header)가 존재하지 않는 경우에도 '부품 표준 등급' 및 '직무별 기준 사양' 탭이 최상단에 안전하게 표시되도록 보완
- 모바일 QR 스캔 시 확장자 없는 가상 경로(/mobile) 요청이 데스크톱 메인 페이지(/index.html)로 Fallback되던 현상을 수정하기 위해 Nginx 설정에 내부 rewrite 규칙 추가
- 에이전트 개발 규칙 파일(.agents/AGENTS.md) 등록
This commit is contained in:
이태훈
2026-06-29 15:27:17 +09:00
parent 8129f85071
commit dea6beee0b
3 changed files with 38 additions and 4 deletions

View File

@@ -24,6 +24,7 @@ server {
# Serve static files with SPA fallback
location / {
rewrite ^/mobile$ /mobile.html last;
try_files $uri $uri/ /index.html;
}