babel.config.js 194 B

12345678910
  1. module.exports = {
  2. presets: ['module:@react-native/babel-preset'],
  3. "plugins": [
  4. ["module-resolver", {
  5. "alias": {
  6. "^react-native$": "react-native-web"
  7. }
  8. }]
  9. ]
  10. };