insomnia/webpack/webpack.config.production.babel.js

19 lines
558 B
JavaScript
Raw Normal View History

const webpack = require('webpack');
const baseConfig = require('./webpack.config.base.babel');
module.exports = {
2016-04-20 06:09:46 +00:00
...baseConfig,
devtool: 'source-map',
2016-04-20 06:09:46 +00:00
plugins: [
...baseConfig.plugins,
2016-11-16 18:16:55 +00:00
// NOTE: Uglification breaks everything! So many problems for some reason
2016-11-01 17:50:31 +00:00
// new webpack.optimize.UglifyJsPlugin(),
2016-04-20 06:09:46 +00:00
new webpack.DefinePlugin({
__DEV__: false,
2016-08-17 22:44:03 +00:00
'process.env.NODE_ENV': JSON.stringify('production'),
'process.env.INSOMNIA_ENV': JSON.stringify('production'),
'process.env.HOT': JSON.stringify(null)
2016-04-20 06:09:46 +00:00
})
]
};