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
When I designate a single entry point, HMR works fine locally and on networked machines. When I switch to a named entry point for multiple entry points HMR continues to work locally but stops on networked machines. The console on the networked machine in both cases starts with [HMR] Waiting for update signal from WDS..., but nothing updates. A browser refresh serves the updated code.
// HMR Works locally and across networkentry: ['webpack-dev-server/client?http://localhost:9090/','webpack/hot/only-dev-server',path.resolve(__dirname,'src/main.js')],output: {path: path.resolve(__dirname,'build'),filename: 'bundle.js',},// HMR works locally but not across networkentry: {app: ['webpack-dev-server/client?http://localhost:9090/','webpack/hot/only-dev-server',path.join(__dirname,'src/main.js')]},output: {path: path.resolve(__dirname,'build'),filename: '[name]_bundle.js',},
When I designate a single entry point, HMR works fine locally and on networked machines. When I switch to a named entry point for multiple entry points HMR continues to work locally but stops on networked machines. The console on the networked machine in both cases starts with
[HMR] Waiting for update signal from WDS...
, but nothing updates. A browser refresh serves the updated code.On local machines I am accessing it via either http://localhost:9090 or IP http://X.X.X.X:9090. On network machines it is via IP http://X.X.X.X:9090 (so not IP related).
Environment
NodeJS: v5.6.0
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
The text was updated successfully, but these errors were encountered: