我使用的是"react-native-web-linear-gradient": "^1.1.2",
,它需要react-native-svg
。我使用的是^13.8.0
版本的svg包。
当我运行yarn storybook
时,我得到以下错误:
ModuleNotFoundError: Module not found: Error: Can't resolve 'react-native/Libraries/NativeComponent/NativeComponentRegistry' in '<project-root>/node_modules/react-native-svg/lib/module/fabric'
at <project-root>/node_modules/webpack/lib/Compilation.js:2016:28
1条答案
按热度按时间ni65a41a1#
我在Github this comment上的
react-native-svg
问题页面上发现,从9.8.5
升级到9.8.6
破坏了他们的Web构建:所以我把我的svg包降级到
9.8.5
,现在它可以运行了。