vue-longpress
Version:
Hold the click in the button to confirm the action
21 lines (17 loc) • 569 B
JavaScript
const webpack = require('webpack');
module.exports = exports = Object.create(require('./webpack.config.js'));
exports.plugins = (exports.plugins || []).concat(
new webpack.optimize.UglifyJsPlugin({
minimize: true,
sourceMap: false,
mangle: true,
compress: {
warnings: false
},
output: {
comments: false
}
})
);
exports.output = Object.create(exports.output);
exports.output.filename = exports.output.filename.replace(/\.js$/, '.min.js');