Files
calchat/babel.config.js
2025-11-24 22:06:55 +01:00

10 lines
184 B
JavaScript

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