Files
RecipesCam/babel.config.js
2026-07-17 09:33:24 +07:00

13 lines
246 B
JavaScript

module.exports = function (api) {
api.cache(true);
return {
presets: [
["babel-preset-expo", { jsxImportSource: "nativewind" }],
"nativewind/babel",
],
plugins: [
"react-native-reanimated/plugin",
],
};
};