Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/bs / developmentWithoutServer / webpack.config.analyze.js
Size: Mime:
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
const config = require('./webpack.config.dev')

process.env.NODE_ENV = 'production'
module.exports = {
  ...config,
  mode: 'production',
  plugins: [...config.plugins, new BundleAnalyzerPlugin()],
  entry: [[...config.entry].pop()],
}