React 앱 크기 분석
소스 맵 탐색기를 Create React App 프로젝트에 추가하려면 다음 단계를 따르세요.
npm install --save source-map-explorer
그런 다음
package.json
에서 scripts
에 다음 줄을 추가합니다."scripts": {
+ "analyze": "source-map-explorer 'build/static/js/*.js'",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
그런 다음 번들을 분석하려면 프로덕션 빌드를 실행한 다음 분석 스크립트를 실행하십시오.
npm run build
npm run analyze
참조 : https://create-react-app.dev/docs/analyzing-the-bundle-size/
Reference
이 문제에 관하여(React 앱 크기 분석), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/manthanank/analyze-react-app-size-28ng텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)