removeddit/webpack.prod.js

14 lines
363 B
JavaScript
Raw Normal View History

2018-01-09 01:15:49 +00:00
const webpack = require('webpack');
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
module.exports = merge(common, {
2018-01-16 00:12:14 +00:00
plugins: [
new UglifyJSPlugin(),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production'),
}),
],
});