react-native-svg-web
This package can be used as a drop-in replacement for react-native-svg when targeting the web, or as a mock for jest when testing react-native applications.
Targeting the Web
Add the following to your webpack configuration:
moduleexports =... /* the existing configuration */resolve:alias:'react-native-svg': 'react-native-svg-web';
Mocking with Jest
Add the following to your package.json
.
;
And then create a file ./jest/mocks/react-native-svg.js
:
jest;