mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
16 lines
296 B
JavaScript
16 lines
296 B
JavaScript
import webpack from 'webpack'
|
|
import baseConfig from './webpack.config.base'
|
|
|
|
export default {
|
|
...baseConfig,
|
|
plugins: [
|
|
...baseConfig.plugins,
|
|
new webpack.DefinePlugin({
|
|
__DEV__: false,
|
|
'process.env': {
|
|
NODE_ENV: JSON.stringify('production')
|
|
}
|
|
})
|
|
]
|
|
}
|