Perf/frontend optimization#57
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
개요
apps/extension) 빌드 결과물의 파일 크기를 시각적으로 모니터링하기 위해rollup-plugin-visualizer번들 분석 도구 지원을 추가합니다.작업 내용
대시보드 차트 지연 로딩 (Lazy Loading) 도입 (
apps/web)next/dynamic을 사용하여ActivityTrendChart와BrowserDistributionChart를 SSR 비활성화 및 로딩 스켈레톤과 함께 지연 로딩하도록 선언했습니다.ChartSkeleton)를 신규 구현했습니다.번들 크기 시각화(Bundle Size Visualizer) 지원 (
apps/extension)apps/extension개발 의존성으로rollup-plugin-visualizer패키지를 추가했습니다.검증 결과
tsc --noEmit통과biome check(또는lint/format) 통과비고
rollup-plugin-visualizer가pnpm-lock.yaml파일에 devDependencies로 추가되었으나,apps/extension/package.json에는 해당 패키지 선언이 누락되어 있어 lockfile과의 싱크 미스매치가 존재합니다. 이 부분에 대한 패키지 명세 보완이 추가로 필요할 수 있습니다.