Correct the babel config for the minify script in to avoid the "Couldn't find intersection" errors

This commit is contained in:
Alex Tselegidis 2023-05-04 12:05:51 +02:00
parent 0fbc3b906d
commit f2c8df38b9
1 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
{
"presets": ["@babel/preset-env", "minify"]
"presets": [
"@babel/preset-env",
["minify", { "builtIns": false, "mangle": false }]
]
}