From b47fe9074c1f7303468e49e92ff0dc987aea993b Mon Sep 17 00:00:00 2001 From: Alex Tselegidis Date: Wed, 3 May 2023 07:33:42 +0200 Subject: [PATCH] Workaround for babel script issues (https://github.com/babel/minify/issues/904) --- babel.config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babel.config.json b/babel.config.json index 5d1ff01f..592fc65d 100644 --- a/babel.config.json +++ b/babel.config.json @@ -1,3 +1,3 @@ { - "presets": ["@babel/preset-env", "minify"] + "presets": ["@babel/preset-env", "minify", { "builtIns": false, "mangle": false }] }