Trying to get live reloading to work. Basically using the gearon-transform-boilerplate: https://github.com/gaearon/react-transform-boilerplate
When I go to the dev server localhost:3000, i get live reloading
When I go to my backend server, and load the src data from the dev server ie:
<script type="text/javascript" src="http://localhost:3000/static/bundle.js"></script>
The reactjs page loads properly, but I get no hot reloading.(Which means when I change the components, I have to refresh the page to see the change)
How is this supposed to work? How do I get the backend server to essentially refresh the page when the src changes?
tags webpack webpack-hmr webpack-dev-server