mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 04:19:20 +00:00
10 lines
171 B
JavaScript
10 lines
171 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: [
|
|
["babel-preset-expo", { jsxImportSource: "nativewind" }],
|
|
"nativewind/babel",
|
|
],
|
|
};
|
|
};
|