memowake-front/babel.config.js
2025-06-20 18:20:31 +08:00

9 lines
209 B
JavaScript

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