UNPKG

uglify-js-plugin

Version:
17 lines (16 loc) 309 B
var UglifyJsPlugin = require('../index.js'); module.exports = { entry: { hello: './src/hello.js' }, output: { path: './build', filename: '[name].js' }, plugins: [ new UglifyJsPlugin({ compress: false, debug: true }) ] };