Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 419 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 419 Bytes

react-app-rewire-define-plugin

Add webpack.DefinePlugin to a react-app-rewired config.

const rewireDefinePlugin = require('react-app-rewire-define-plugin')

// Use `webpack.DefinePlugin` to add the version number from package.json
config = rewireDefinePlugin(config, env, {
  'process.env.VERSION': JSON.stringify(require('./package.json').version)
})