From f2c8df38b9212213a02e3472158dba7bc2c189d8 Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Thu, 4 May 2023 12:05:51 +0200 Subject: [PATCH] Correct the babel config for the minify script in to avoid the "Couldn't find intersection" errors --- babel.config.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babel.config.json b/babel.config.json index 5d1ff01f..de2f8304 100644 --- a/babel.config.json +++ b/babel.config.json @@ -1,3 +1,6 @@ { - "presets": ["@babel/preset-env", "minify"] + "presets": [ + "@babel/preset-env", + ["minify", { "builtIns": false, "mangle": false }] + ] }