basic initial code
This commit is contained in:
19
postcss.config.js
Normal file
19
postcss.config.js
Normal file
@@ -0,0 +1,19 @@
|
||||
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"
|
||||
]
|
||||
}
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user