# InsuWiki 빌드 캐시 정리 + 서버 재시작 + Underline 검증

## 증상
서버 로그에 JS 번들 404 에러:
```
GET /_next/dev/static/chunks/nextapp_src_a4a8d3b6._.js 404
```
EditorToolbar 컴포넌트가 포함된 JS 번들이 로드 안 되어 U 버튼 미표시.

## 작업

### 1. .next 캐시 삭제 + 서버 재시작
```bash
cd /home/jay/projects/insuwiki/nextapp
# 기존 서버 중지
pkill -f "next dev" || true
sleep 2
# .next 캐시 삭제
rm -rf .next
# 서버 재시작
NEXT_PUBLIC_USE_EMULATOR=false npm run dev > /tmp/insuwiki-dev.log 2>&1 &
```

### 2. 번들 로드 확인
- 서버 시작 후 30초 대기
- `/tmp/insuwiki-dev.log` 확인 — 404 에러 없는지
- `curl -s http://localhost:3000/docs/1 | grep -i "underline"` 확인

### 3. webapp-testing으로 UI 검증
- 가능하면 Playwright로 /docs/1 접속하여 스크린샷 캡처
- 툴바에 B, I, S, **U** 4개 버튼 모두 보이는지 확인
- 불가하면 서버 로그에서 에러 없음 + 번들 200 응답 확인으로 대체

## 대상
- `/home/jay/projects/insuwiki/nextapp/`