UNPKG

@textback/notification-widget

Version:

TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.

11 lines (9 loc) 266 B
const merge = require('webpack-merge'); const common = require('./webpack.common.js'); const UglifyJSPlugin = require('uglifyjs-webpack-plugin'); module.exports = merge(common, { mode: 'production', optimization: { minimizer: [new UglifyJSPlugin()] } });