[Vuejs]-Vue webpack uglify – arrow functions

0👍

Right now, UglifyJsPlugin doesn’t support ES6 feature (arrow function) so you must use babel first to compile your ES6 code to ES5 then use UglifyJsPlugin in it

Leave a comment