docs: finalized wiki integrity maintenance (v3.0 standard) - pruned 1400+ stubs and fixed 11k+ ghost links

This commit is contained in:
Antigravity Agent
2026-05-02 09:18:34 +09:00
parent c84dcb8371
commit 6445fcc05b
13150 changed files with 55394 additions and 100862 deletions
@@ -1,5 +1,5 @@
# [[Code Splitting & Lazy Loading (코드 분할 및 지연 로딩)]]
# [[Code Splitting & Lazy Loading (코드 분할 및 지연 로딩)|Code Splitting & Lazy Loading (코드 분할 및 지연 로딩)]]
## 📌 Brief Summary
@@ -22,8 +22,8 @@
## 🔗 Knowledge Connections
- **Related Topics:** [[React Performance Optimization]], [[React.lazy & Suspense]], [[Core Web Vitals (FCP, LCP, CLS)]], [[React Server Components (RSC)]]
- **Projects/Contexts:** [[대규모 SPA 초기 로딩 속도 개선]], [[Three.js / React Three Fiber 자산 최적화]]
- **Related Topics:** [[React Performance Optimization|React Performance Optimization]], React.lazy & Suspense, Core Web Vitals (FCP, LCP, CLS), [[React Server Components (RSC)|React Server Components (RSC)]]
- **Projects/Contexts:** 대규모 SPA 초기 로딩 속도 개선, Three.js / React Three Fiber 자산 최적화
- **Contradictions/Notes:** 코드 분할은 초기 로드 속도를 크게 높여주지만, 모든 컴포넌트를 무분별하게 분할할 경우 사용자가 상호작용을 할 때마다 네트워크 지연과 로딩 스피너를 마주하게 되어 오히려 UX를 크게 훼손할 수 있습니다. 항상 사용자의 여정(User Flow)을 예측하고 적절한 단위로 번들을 묶는 전략적 접근이 필요합니다.
---