chefhai/babel.config.js
2025-05-10 00:39:48 +07:00

9 lines
183 B
JavaScript

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