This repository has been archived on 2025-02-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

12 lines
255 B
JavaScript
Raw Permalink Normal View History

2018-09-03 23:08:32 +02:00
const webpack = require('webpack');
const merge = require('webpack-merge');
const common = require('./common.js');
module.exports = merge(common, {
plugins: [
new webpack.optimize.UglifyJsPlugin({
compress: { warnings: false }
})
]
});