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

pull/6/head
Surinder Kumar 2017-09-13 15:50:09 +01:00 committed by Dave Page
parent ff79dfc186
commit e819465e38
1 changed files with 1 additions and 1 deletions

View File

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