You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can't speak for everyone, but I had to modify a couple of things to get hot reload to work on windows.
First, remove localhost binding in server.js (reference).
server.listen(port,(err)=>{if(err){console.error(err);}console.info('==> 🌎 Listening on port %s. Open up http://localhost:%s/ in your browser.',port,port);});
Also, add base public path in webpack.config (reference).
Excellent thanks, it was never working well for me good catches, note that it still won't work with react pure functional components but that's a limitation of the hot reloader (looking forward to the new one). I'll verify this later and update.
Can't speak for everyone, but I had to modify a couple of things to get hot reload to work on windows.
First, remove localhost binding in server.js (reference).
Also, add base public path in webpack.config (reference).
The text was updated successfully, but these errors were encountered: