19 lines
450 B
JavaScript
19 lines
450 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
// Other PostCSS plugins can be listed here if you use them.
|
|
],
|
|
minify: true, // Ensure this is set to true so Parcel uses the provided options
|
|
terserOptions: {
|
|
mangle: {
|
|
// Specify functions that should not be mangled by their names
|
|
reserved: [
|
|
"setPlan",
|
|
"logEvent",
|
|
"exportCSV",
|
|
"resetSystem",
|
|
"navigateTemp",
|
|
"logTemp"
|
|
]
|
|
}
|
|
}
|
|
}; |