insomnia/webpack/webpack.config.production.js

16 lines
298 B
JavaScript
Raw Normal View History

import webpack from 'webpack';
import baseConfig from './webpack.config.base';
2016-04-20 06:09:46 +00:00
export default {
...baseConfig,
plugins: [
...baseConfig.plugins,
new webpack.DefinePlugin({
__DEV__: false,
'process.env': {
NODE_ENV: JSON.stringify('production')
}
})
]
}