mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 06:27:19 +01:00
17 lines
321 B
JavaScript
17 lines
321 B
JavaScript
module.exports = {
|
|
output: {
|
|
comments: 0
|
|
},
|
|
compress: {
|
|
unused: 1,
|
|
warnings: 0,
|
|
comparisons: 1,
|
|
conditionals: 1,
|
|
negate_iife: 0, // <- for `LazyParseWebpackPlugin()`
|
|
dead_code: 1,
|
|
if_return: 1,
|
|
join_vars: 1,
|
|
evaluate: 1
|
|
}
|
|
};
|