From 66c62c390c462f59a56dc436d03eb0f02e5fd8c8 Mon Sep 17 00:00:00 2001 From: Peter Velkov Date: Tue, 7 Nov 2023 17:38:28 +0200 Subject: [PATCH] Fix babel.config metro plugins syntax --- babel.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babel.config.js b/babel.config.js index 64a433936eb7..d8ad66917b82 100644 --- a/babel.config.js +++ b/babel.config.js @@ -72,7 +72,7 @@ const metro = { ], env: { production: { - plugins: ['transform-remove-console', {exclude: ['error', 'warn']}], + plugins: [['transform-remove-console', {exclude: ['error', 'warn']}]], }, }, };