feat(WEB): 대시보드 네비게이션 경로 정규화 및 서버 설정 개선

- normalizePath 헬퍼 함수 추가 (/ko prefix, ?mode=view 자동 추가)
- 대시보드 detailButtonPath에 /ko prefix 적용
- start 스크립트에 -H 0.0.0.0 추가 (외부 접근 허용)
- start:local 스크립트 추가 (로컬 전용)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
유병철
2026-01-25 15:05:24 +09:00
parent bae36f6f43
commit 0bad332c22
3 changed files with 41 additions and 7 deletions

View File

@@ -6,7 +6,8 @@
"dev": "next dev",
"build": "next build",
"build:restart": "lsof -ti:3000 | xargs kill 2>/dev/null; next build && next start &",
"start": "next start",
"start": "next start -H 0.0.0.0",
"start:local": "next start",
"lint": "eslint",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",