-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bundle size 줄이기 위해 react-icons 대신 다른 라이브러리 사용 #1229
Labels
Comments
react-icons 이야기는 아니긴 한데... MUI의 iconset이 SSR을 지원 안해서 timeout 떴다는 이야기가 많더라고요 |
https://nextjs.org/docs/app/api-reference/next-config-js/optimizePackageImports |
Changed the connected Notion task status to not-started TAS-511 Bundle size 줄이기 위해 react-icons 대신 다른 라이브러리 사용 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the problem and solution
아래 그림처럼 빌드 후 bundle 사이즈를 분석했을 때 react-icons가 높은 비중을 차지하는 걸 볼 수 있습니다.
이 때문에 아이콘이 적용된 페이지는 로딩이 다른 페이지에 비해 느려집니다.
Next.js의 빌드 결과에 따르면 일반 페이지는 JS가 85.2 kB, 아이콘이 있는 페이지는 374 kB입니다.
react-icons에서 자체적으로 tree-shaking을 지원하지 않기 때문인데,
해결 방법이 없진 않지만 이 방법을 쓰면 설치해야하는 react-icons의 크기가 늘어나 설치가 오래 걸리는 단점이 있습니다.
tree-shaking을 더 잘 지원하는, Vue와 사용하던 unplugin-icons와 같은 라이브러리를 사용하는 게 좋을 거 같아요.
참고
react-icons/react-icons#786
react-icons/react-icons#154
Validations
The text was updated successfully, but these errors were encountered: