Skip to content

Commit 48c7f1d

Browse files
committed
Turn off uglify-js
1 parent 6a9152a commit 48c7f1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let libraryName = package.name;
1313
let plugins = [], outputFile;
1414

1515
if (env === 'build') {
16-
plugins.push(new UglifyJsPlugin({ minimize: true }));
16+
// plugins.push(new UglifyJsPlugin({ minimize: true }));
1717
outputFile = libraryName + '.min.js';
1818
} else {
1919
outputFile = libraryName + '.js';

0 commit comments

Comments
 (0)