0

I am using react-native-web and webpack in my project, I need to show icons in my web app, I am trying to use react-native-web-vector-icons.

But I am getting the following error:

./node_modules/react-native-vector-icons/lib/react-native.js Module not found: Error: Can't resolve 'react-native'

Need help to solve this issue.

SuleymanSah
  • 17,153
  • 5
  • 33
  • 54

1 Answers1

0

Need to alias react-native to react-native-web in webpack config.

module.exports = {
  ...
  resolve: {
    ...
    alias: {
      'react-native$': 'react-native-web',
    },
  },
};
cltsang
  • 1,670
  • 1
  • 14
  • 19