Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save rrichardsonv/297149f8987f0e8ec3391e9a5dbb73e8 to your computer and use it in GitHub Desktop.

Select an option

Save rrichardsonv/297149f8987f0e8ec3391e9a5dbb73e8 to your computer and use it in GitHub Desktop.
// npm install --save-dev webpack-bundle-analyzer
process.env.NODE_ENV = "production"
var BundleAnalyzerPlugin = require("webpack-bundle-analyzer")
.BundleAnalyzerPlugin
const webpackConfigProd = require("react-scripts/config/webpack.config.prod")
webpackConfigProd.plugins.push(
new BundleAnalyzerPlugin({
analyzerMode: "static",
reportFilename: "report.html",
})
)
require("react-scripts/scripts/build")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment