Files
better-auth/examples/expo-example/babel.config.js
2024-11-01 09:24:14 +03:00

10 lines
171 B
JavaScript

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