babel.config.js 259 B

12345678910
  1. module.exports = function (api) {
  2. api.cache(true);
  3. return {
  4. presets: ['babel-preset-expo'],
  5. plugins: [
  6. 'nativewind/babel',
  7. ['module:react-native-dotenv', { path: 'factory-env/.env.global' }]
  8. ]
  9. };
  10. };