Closed
Description
When installing @symfony/webpack-encore
you'll get a front requirement for webpack-dev-server@^4.0.0-beta.0
. The new 4.0.0-rc.0
release renamed the firewall
option into allowedHosts
(and changed the way it's configured)
See WebpackDevServer Changelog.
This documentation is not valid as of webpack-dev-server@^4.0.0-beta.0
.
Encore
.configureDevServerOptions(options => {
options.allowedHosts = 'all';
});