basic initial code

This commit is contained in:
2025-06-09 00:21:41 -04:00
parent 9f99495eab
commit a711acbea8
9 changed files with 11089 additions and 7 deletions

19
postcss.config.js Normal file
View 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"
]
}
}
};