From f3a63f432b2efeb878c6653a05888a84903586a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20Stefa=C5=84czyk?= Date: Wed, 24 Apr 2024 18:09:59 +0200 Subject: [PATCH] fix order of babel plugins --- babel.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babel.config.js b/babel.config.js index 0b2916076..63f23328d 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,8 +1,8 @@ module.exports = { presets: ['module:@react-native/babel-preset'], plugins: [ + 'transform-inline-environment-variables', // react-native-reanimated/plugin has to be last 'react-native-reanimated/plugin', - 'transform-inline-environment-variables', ], };