-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
fix(react): timeout after 20 min waiting for remote #18099
fix(react): timeout after 20 min waiting for remote #18099
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
thanks for submitting this pr. i think |
@xiongemi , removing host: 'localhost' cause issue |
Let me take a look at this :) |
Hi team, please mentioned the release into which this issue is fixed |
Ok, the fix is listed in 16.6.0 pre-release - https://github.com/nrwl/nx/releases/tag/16.6.0-beta.6 When are you planning to release the stable 16.6.0? |
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Current Behavior
When using module federation the server will close after 20 minutes with the following error:
Expected Behavior
The server keeps on running
Cause
The following pr caused the bug to occur: #17192
The webpack dev server doesn't bind to
127.0.0.1
by default.It only binds to
localhost
and::1
.Related Issue(s)
Fixes #17354