javascript/react-native
[react-native] bundling failed: Error: Unable to resolve module `./../react-transform-hmr/lib/index.js
738
2018. 12. 9. 23:33
[react-native Trouble Shooting]
Problem
> error: bundling failed: Error: Unable to resolve module `./../react-transform-hmr/lib/index.js
Solution
> 캐시를 클린해야함
1 2 3 4 | rm -rf $TMPDIR/react-*; rm -rf $TMPDIR/haste-*; rm -rf $TMPDIR/metro-*; watchman watch-del-all # Start Metro Bundler directly react-native start | cs |