Exclude comments from webpack build

This commit is contained in:
Bartek Fabiszewski 2020-01-11 16:15:22 +01:00
parent b482eba30e
commit 260d576fc2

View File

@ -14,8 +14,12 @@ module.exports = merge(common, {
terserOptions: {
compress: {
pure_funcs: [ 'console.log' ]
},
output: {
comments: false,
}
}
},
extractComments: false
})
]
},