reactnative_mobilemk/babel.config.js
2024-12-27 00:43:29 +01:00

10 lines
184 B
JavaScript

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