當前位置:首頁 > IT技術(shù) > 移動平臺 > 正文

create-react-app 生成 report.html 可視化打包分析
2021-09-17 16:18:00

yarn add webpack-bundle-analyzer

修改webpack.config.js:

const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
const isBundleAnalyzer = process.env.GENERATE_BUNDLE_ANALYZER_REPORT === 'true'
plugins: [
  // ...
  isEnvProduction && isBundleAnalyzer && new BundleAnalyzerPlugin()
]

通過設(shè)置環(huán)境變量GENERATE_BUNDLE_ANALYZER_REPORT=true來生成report

?

create-react-app 生成 report.html 可視化打包分析_analyzer

?
?
?
?

本文摘自 :https://blog.51cto.com/x

開通會員,享受整站包年服務(wù)立即開通 >