Skip to content

Commit

Permalink
Disable minification for better error reporting in GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
vlsi committed Aug 11, 2020
1 parent e4a441d commit 29d2590
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cache-action-entrypoint/webpack.config.d/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,15 @@ config.optimization = {
sourceMap: true, // Must be set to true if using source-maps in production
terserOptions: {
// https://github.com/webpack-contrib/terser-webpack-plugin#terseroptions
// mangle: false,
mangle: false,
sourceMap: true,
// compress: false,
keep_classnames: /AbortSignal/,
keep_fnames: /AbortSignal/,
output: {
beautify: true,
indent_level: 1
}
}
}),
],
Expand Down

0 comments on commit 29d2590

Please sign in to comment.