babel.config.js 176B

12345678910111213
  1. module.exports = {
  2. plugins: [
  3. [
  4. 'module-resolver',
  5. {
  6. alias: {
  7. 'react-native-safe-area-context': './src',
  8. },
  9. },
  10. ],
  11. ],
  12. };