Files
create-better-t-stack/apps/cli/templates/frontend/native/unistyles/babel.config.js
2025-07-07 19:34:09 +05:30

22 lines
362 B
JavaScript

module.exports = function (api) {
api.cache(true);
const plugins = [];
plugins.push([
'react-native-unistyles/plugin',
{
root: "src",
autoProcessRoot: 'app',
autoProcessImports: ['@/components']
},
]);
plugins.push('react-native-reanimated/plugin');
return {
presets: ['babel-preset-expo'],
plugins,
};
};