mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
13 lines
238 B
JavaScript
13 lines
238 B
JavaScript
import * as base from './webpack.config.base'
|
|
|
|
base.plugins = base.plugins.concat([
|
|
new webpack.DefinePlugin({
|
|
__DEV__: false,
|
|
'process.env': {
|
|
NODE_ENV: JSON.stringify('production')
|
|
}
|
|
})
|
|
]);
|
|
|
|
module.exports = base;
|