insomnia/webpack/webpack.config.production.babel.js
Gregory Schier ea96136c3b Move auto-updater to use github releases (#165)
* Move auto-updater to use github releases

* Adjust remoteReleases

* Bump version

* More reliable update notification

* More reliable update notifications
2017-05-05 11:27:08 -07:00

18 lines
494 B
JavaScript

const webpack = require('webpack');
const baseConfig = require('./webpack.config.base.babel');
module.exports = {
...baseConfig,
devtool: 'source-map',
plugins: [
...baseConfig.plugins,
// NOTE: Uglification breaks everything! So many problems for some reason
// new webpack.optimize.UglifyJsPlugin(),
new webpack.DefinePlugin({
__DEV__: false,
'process.env.NODE_ENV': JSON.stringify('production'),
'process.env.HOT': JSON.stringify(null)
})
]
};