mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
1d45367aa1
* Fixed duplication kve bug * Added semistandard and updated code * Actually got it working * Even better * I think it should work on Windows now
19 lines
558 B
JavaScript
19 lines
558 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.INSOMNIA_ENV': JSON.stringify('production'),
|
|
'process.env.HOT': JSON.stringify(null)
|
|
})
|
|
]
|
|
};
|