Reputation: 3020
I'm making a React Native app. And debugging or working with it, it get very tedious day by day due to the time it takes to reload the app every single time with Command+R to refresh and see my changes.
I found that is possible to do Live Reload/Hot Reload. But is not working for me.
Every time I do a change on my code, shows up the "Hot Loading..." above, but you can wait 20 minutes and it won't reload anything.
What could be wrong here? Let me know what to check and I can edit this post.
Upvotes: 1
Views: 2906
Reputation: 16365
I was having a similar problem. Solved running:
rm -rf /usr/local/var/run/watchman && brew uninstall watchman && brew install watchman
From this comment.
Upvotes: 1