docs: finalized wiki integrity maintenance (v3.0 standard) - pruned 1400+ stubs and fixed 11k+ ghost links
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
---
|
||||
id: P-REINFORCE-AUTO-5A7457
|
||||
category: "[[10_Wiki/💡 Topics/Design & Experience]]"
|
||||
category: "10_Wiki/💡 Topics/Design & Experience"
|
||||
confidence_score: 0.90
|
||||
tags: [auto-reinforced]
|
||||
last_reinforced: 2026-04-20
|
||||
github_commit: "[P-Reinforce] Continuous Worker - Tree Shaking (번들 크기 최적화)"
|
||||
---
|
||||
|
||||
# [[Tree Shaking (번들 크기 최적화)]]
|
||||
# [[Tree Shaking (번들 크기 최적화)|Tree Shaking (번들 크기 최적화)]]
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> 최신 모듈 번들러(Webpack, Vite 등)를 사용하여 애플리케이션의 최종 프로덕션 번들에서 사용되지 않는 '죽은 코드(Dead Code)'를 제거함으로써, 전체 자바스크립트 파일 크기를 최적화하는 기법입니다.
|
||||
@@ -31,12 +31,12 @@ github_commit: "[P-Reinforce] Continuous Worker - Tree Shaking (번들 크기
|
||||
- **정책 변화:** Design & Experience 분야의 자동 자산화 수행.
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- **Related Topics:** [[Code Splitting & Lazy Loading]], [[React Performance Optimization]], [[Webpack 번들 분석기 (webpack-bundle-analyzer)]], [[First Contentful Paint (FCP) 개선]]
|
||||
- **Projects/Contexts:** [[대규모 React 프론트엔드 최적화]], [[모바일 웹 성능 향상 프로젝트]]
|
||||
- **Related Topics:** Code Splitting & Lazy Loading, [[React Performance Optimization|React Performance Optimization]], Webpack 번들 분석기 (webpack-bundle-analyzer), First Contentful Paint (FCP) 개선
|
||||
- **Projects/Contexts:** [[대규모 React 프론트엔드 최적화|대규모 React 프론트엔드 최적화]], 모바일 웹 성능 향상 프로젝트
|
||||
- **Contradictions/Notes:** 모듈을 가져올 때 구조 분해 할당(예: `import { debounce } from 'lodash'`)을 하더라도 해당 라이브러리가 본래 ES6 모듈 기반으로 작성되지 않았다면 전체 코드가 번들에 포함될 수 있습니다. 따라서 `lodash` 대신 Tree Shaking이 지원되는 `lodash-es`를 사용하는 등, 종속성을 추가할 때 라이브러리 자체의 지원 여부를 확인하는 것이 매우 중요합니다.
|
||||
|
||||
---
|
||||
|
||||
_Last updated: 2026-04-14_
|
||||
- Raw Source: [[00_Raw/2026-04-20/Tree Shaking (번들 크기 최적화).md]]
|
||||
- Raw Source: 00_Raw/2026-04-20/Tree Shaking (번들 크기 최적화).md
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user