This commit is contained in:
Turbobot
2024-03-21 13:41:16 +08:00
committed by giancarlo
commit bb58169fe9
204 changed files with 26228 additions and 0 deletions

15
apps/expo/babel.config.js Normal file
View File

@@ -0,0 +1,15 @@
/** @type {import("@babel/core").ConfigFunction} */
module.exports = function (api) {
api.cache.forever();
return {
presets: [
["babel-preset-expo", { jsxImportSource: "nativewind" }],
"nativewind/babel",
],
plugins: [
require.resolve("expo-router/babel"),
require.resolve("react-native-reanimated/plugin"),
],
};
};