Files
mdb/mb-app/babel.config.js
Bastien COIGNOUX bd325fe456 init
2026-05-03 20:18:33 +02:00

10 lines
184 B
JavaScript

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