mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-31 03:16:42 -05: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",
|
|
],
|
|
};
|
|
};
|