Uber_Clone/babel.config.js

10 lines
184 B
JavaScript
Raw Permalink Normal View History

2025-03-25 12:08:42 +00:00
module.exports = function (api) {
api.cache(true);
return {
presets: [
["babel-preset-expo", { jsxImportSource: "nativewind" }],
"nativewind/babel",
],
};
};