Files
SeaGateway-App/babel.config.js
2025-10-30 17:55:25 +07:00

10 lines
184 B
JavaScript

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