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
bug #943 Do not allow webpack-dev-server to find an open port (weaverryan)
This PR was merged into the main branch.
Discussion
----------
Do not allow webpack-dev-server to find an open port
Addresses on issue on #941
This disallows the "find an open port" feature in webpack-dev-server. This is unfortunate, as this is a nice feature of webpack-dev-server where if port 8080 is open, it will try 8081, etc.
However, because we need to build a manifest.json file, we need to know what
the port is for sure at Webpack config build time. Even going through the same
async process of using the "find-port" package isn't really doable... as it
would make the entire config generation async (this may be possible, but would
change a ton of things in Encore & in userland `webpack.config.js` files).
Cheers!
Commits
-------
da17b90 Do not allow webpack-dev-server to find an open port
0 commit comments