aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/babel.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/mobile/babel.config.js')
-rw-r--r--apps/mobile/babel.config.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/mobile/babel.config.js b/apps/mobile/babel.config.js
index f3c649bb..c8d46f96 100644
--- a/apps/mobile/babel.config.js
+++ b/apps/mobile/babel.config.js
@@ -1,9 +1,12 @@
module.exports = function (api) {
api.cache(true);
+ const plugins = [];
+ plugins.push("react-native-reanimated/plugin");
return {
presets: [
["babel-preset-expo", { jsxImportSource: "nativewind" }],
"nativewind/babel",
],
+ plugins,
};
};