POWR/babel.config.js

7 lines
165 B
JavaScript
Raw Normal View History

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