fix: disable variable name mangling in minification for better readability

This commit is contained in:
himanshu8443
2025-07-13 11:25:08 +05:30
parent 35f1e57a0b
commit 4d450e5be5

View File

@@ -119,9 +119,7 @@ class ProviderBuilder {
"console.warn",
],
},
mangle: {
keep_fnames: false, // Mangle function names for better compression
},
mangle: false, // Disable variable name mangling to keep original names
format: {
comments: false, // Remove comments
},