-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hot Module Replacement #8
Comments
This is something I have been meaning to look into. It should be possible. Html.js needs to be update to point at the separate instance of the webpack dev server. The application would be hosted on The server generated scripts will not support hot-reloading, since it doesn't really apply. However, there is a similar mechanism. run Once you get |
I was trying to use webpack-dev-server with a .net application and most of it works by starting 2 servers (the .net server to serve the content/data-endpoints and webpack-dev-server to serve the bundle with hot loading). Using the following repo has hot loading, redux and and the redux dev tool: https://github.com/gaearon/redux-devtools.git Then I use webpack-dev-server proxy settings to have any missing content proxy to my .net application. This would work fine but the proxy does not seem to support ntlm (the .net application uses ntlm) and I am unable to mock/set a domain user in my dev environment (IIS Express/.net app). Maybe you have solved this issue in a different way and I would curious to know how: |
@amsterdamharu, this is the next issue/feature that I will be tackling. I will keep you updated. Probably won't get to it until this weekend. |
I am also having a similar issue where I have webpack-dev-server on one port and asp.net core running on the other, but whenever the hot module replacement api kicks in it searches for the update on the wrong port. |
Any updates on this? Thank you :) |
No, sorry. I have been swamped at my current position in lower level embedded Linux stuff. Not sure when I will have time to get back to this, ATM. |
@pauldotknopf I can relate, no probs. Would you be open to giving us a list of steps to implement this, in detail, and give some guidance with problems? I'd be open to sending over a PR if I can crack the nut. |
Is it possible to use the Hot Module Replacement plugin? I've played around with it in the dev.webpack.config file (and start it with 'webpack-dev-server --config dev.webpack.config') but I can't get it to work.
I also updated the
configureStore
method like this:Any clues?
The text was updated successfully, but these errors were encountered: