App의 어떤 부분이 제일 큰 부분을 차지하는지 확인 할 수 있게 도와주는 패키지
npm i @next/bundle-analyzer
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true'
})
module.exports = withBundleAnalyzer({})
빌드시에만 ANALYZER 설정함.
"scripts": {
...
"build": "ANALYZE=true NODE_ENV=production next build"
...
},