Actually turn on production mode: env vars need to be explicitly passed through

kegan/timestamp-hover
David Baker 2015-10-14 09:20:18 +01:00
parent c0938f270e
commit 2adb8bac5c
1 changed files with 6 additions and 1 deletions

View File

@ -19,7 +19,12 @@ module.exports = {
},
},
plugins: [
new webpack.IgnorePlugin(/^olm/)
new webpack.IgnorePlugin(/^olm/),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(process.env.NODE_ENV)
}
})
],
devtool: 'source-map'
};