1
0
mirror of https://github.com/nolanlawson/pinafore synced 2024-12-12 10:16:16 +01:00
Pinafore-Web-Client-Frontend/bin/terserOptions.js

14 lines
202 B
JavaScript

module.exports = {
ecma: 8,
mangle: true,
compress: {
pure_funcs: [
'console.log' // remove console logs in production
]
},
output: {
comments: false
},
safari10: true
}