Actually turn on production mode: env vars need to be explicitly passed through
This commit is contained in:
parent
c0938f270e
commit
2adb8bac5c
|
@ -19,7 +19,12 @@ module.exports = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
plugins: [
|
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'
|
devtool: 'source-map'
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue