Files
better-auth/demo/expo-example/babel.config.js
Bereket Engida 2f8a0e1168 chore: misc
2025-09-29 18:02:21 -07:00

10 lines
171 B
JavaScript

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