mirror of
https://github.com/nolanlawson/pinafore
synced 2024-12-12 02:07:26 +01:00
14 lines
202 B
JavaScript
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
|
|
}
|