Always pack React in prod mode to avoid a bug in debug mode that prevents the history tab working.

This commit is contained in:
Surinder Kumar 2017-09-13 15:50:09 +01:00 committed by Dave Page
parent ff79dfc186
commit e819465e38

View File

@ -74,7 +74,7 @@ const optimizeAssetsPlugin = new OptimizeCssAssetsPlugin({
// based on 'NODE_ENV' variable. [used only in production]
const definePlugin = new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify(envType),
'NODE_ENV': JSON.stringify('production'),
},
});