diff --git a/.jules/bolt.md b/.jules/bolt.md index b08b203a..43c1b36c 100644 --- a/.jules/bolt.md +++ b/.jules/bolt.md @@ -4,3 +4,7 @@ ## 2026-07-12 - Optimize renderTaskRow DOM allocations **Learning:** Caching unattached template nodes and instantiating them via `.cloneNode(false)` reduces DOM instantiation overhead in O(N) render loops significantly. **Action:** Apply this optimization to other hot-path rendering elements such as rows, cells, and stack containers. + +## 2024-11-20 - Resource Discovery Optimization +**Learning:** In purely static applications without a bundler, dynamic module imports (or late-discovered ES modules in the body) cause waterfall network requests, significantly increasing Time to Interactive (TTI). +**Action:** Always add `` for all critical top-level ES modules in the `
` of `index.html` to allow the browser to fetch and parse them concurrently with HTML parsing. diff --git a/CHANGELOG.md b/CHANGELOG.md index e434fa01..cd5fa5a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -107,3 +107,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.0.1] - 2026-06-25 ### 성능 개선 (Performance) - 드래그 앤 드롭 동작 중 `dragover` 이벤트에서 발생하는 O(N) 작업 리스트 검색 성능 병목 문제를, O(1) 해시맵(Map) 기반의 캐싱 조회 로직으로 개선하여 큰 크기의 WBS 리스트에서의 버벅임 현상을 해결했습니다. + +## [Unreleased] +### Added +- ⚡ Bolt: `index.html`에 주요 JS 모듈(`cloud-sync.js`, `analytics.js`)에 대한 `modulepreload` 링크를 추가하여 초기 로딩 성능(TTI) 개선 diff --git a/index.html b/index.html index d24b2a88..2798850b 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,10 @@