Skip to content

Commit 7e24dea

Browse files
committed
temporarily disable UglifyJsPlugin
1 parent 2af5f0a commit 7e24dea

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

apps/webpack.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -250,14 +250,14 @@ function create(options) {
250250
if (minify) {
251251
config.plugins = config.plugins.concat(
252252
[
253-
new webpack.optimize.UglifyJsPlugin({
254-
compressor: {
255-
warnings: false
256-
},
257-
// Don't generate source maps for our minified code, as these are expensive
258-
// and we haven't been using them.
259-
sourceMap: false
260-
}),
253+
// new webpack.optimize.UglifyJsPlugin({
254+
// compressor: {
255+
// warnings: false
256+
// },
257+
// // Don't generate source maps for our minified code, as these are expensive
258+
// // and we haven't been using them.
259+
// sourceMap: false
260+
// }),
261261
new UnminifiedWebpackPlugin(),
262262
]
263263
);

0 commit comments

Comments
 (0)