feat: complete wikification of War Commander batch 1&2 and final grey dot cleanup

This commit is contained in:
2026-04-27 18:58:22 +09:00
parent 3424166ea2
commit 6b86b0da4c
2706 changed files with 9074 additions and 7273 deletions
@@ -12,8 +12,8 @@ Style Registry는 Next.js App Router 및 React Server Components(RSC) 환경에
* **하이드레이션 불일치(Hydration Mismatch) 위험과 해결:** 이 레지스트리 패턴을 활용하면 App Router 내에서 Styled Components가 기능할 수 있지만, 서버와 클라이언트가 서로 다른 클래스 이름을 생성할 경우 하이드레이션 불일치가 발생할 위험이 생깁니다 [2]. 이를 완화하기 위해서는 `next.config.js` 파일에서 `styledComponents` 컴파일러 옵션을 필수적으로 활성화하여 서버-클라이언트 경계 전반에 걸쳐 일관된 클래스 이름 생성을 보장해야 합니다 [2].
## 🔗 Knowledge Connections
- **Related Topics:** [[React Server Components]], [[CSS-in-JS]], [[Styled Components]], [[Next.js App Router]], [[Hydration Mismatch]]
- **Projects/Contexts:** [[Modern Frontend Engineering]], [[Next.js 15 Migration]]
- **Related Topics:** [[React Server Components]], [[CSS-in-JS]], [[Styled Components]], [[Next.js App Router]], Hydration Mismatch
- **Projects/Contexts:** Modern Frontend Engineering, Next.js 15 Migration
- **Contradictions/Notes:** 소스 내 직접적인 모순점은 없으나, Style Registry 패턴 자체만으로는 서버와 클라이언트 간 클래스명 불일치라는 부작용을 막을 수 없으므로 `next.config.js` 컴파일러 설정을 통한 보완이 반드시 병행되어야 합니다 [2].
---