Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@vire
Created May 16, 2018 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vire/03eb953882a2c10f2b85a7635c500102 to your computer and use it in GitHub Desktop.
Save vire/03eb953882a2c10f2b85a7635c500102 to your computer and use it in GitHub Desktop.
process.env.NODE_ENV = 'production'
let 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