Files
mdb/app/babel.config.js
Bastien COIGNOUX 695d4e76d0 pocket
2026-05-04 08:28:32 +02:00

10 lines
184 B
JavaScript

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