发布于 2022-07-25
Next.js - Integrate Bundle Analyzer
nodejsjavascriptNextjs
Next.js 集成打包分析工具
npm install @next/bundle-analyzer -D修改next.config.js
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true'
})
module.exports = withBundleAnalyzer({
//...other config
})ANALYZE=true npm run build
修改package.json
{
"scripts": {
"analyze": "ANALYZE=true next build"
}
}npm run analyze