Files
create-better-t-stack/apps/cli/templates/frontend/native/nativewind/babel.config.js
Aman Varshney 6c269a4c5b add unistyles
2025-05-07 18:12:04 +05:30

12 lines
252 B
JavaScript

module.exports = function (api) {
api.cache(true);
const plugins = [];
plugins.push('react-native-reanimated/plugin');
return {
presets: [['babel-preset-expo', { jsxImportSource: 'nativewind' }], 'nativewind/babel'],
plugins,
};
};