regexper-static/webpack.prod.js

11 lines
251 B
JavaScript
Raw Normal View History

2018-02-10 21:05:25 +00:00
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
module.exports = merge(common, {
devtool: 'source-map',
plugins: [
new UglifyJSPlugin()
]
});