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
I think this is a feature gap caused by a bug fix so make of it what you will. With the introduction of 2.4.3 (https://github.com/webpack/webpack-dev-server/releases/tag/v2.4.3), host headers are now explicitly being checked for all calls. That seems sane, but where before I could specify several hosts to proxy calls to:
Or i get an invalid host message like seen in #882. I would expect that there would be a mechanism that would let me specify more than one public path since there is a means of specifying more than one public proxy. Perhaps make public take an array of paths?
The text was updated successfully, but these errors were encountered:
I have setup a local website in IIS and requests are routed to the webpack-dev-server on localhost:3000.
I have a mult-tenant SaaS app on which each tenant resides on a subdomain.
I cannot use *.mylocalsite.com in the devserver.public key of the config.
I have to hard-code subdomain.mylocalsite.com in the config and because of this I cannot access webpack-dev-server at subdomain1.mylocalsite.com
I think this is a feature gap caused by a bug fix so make of it what you will. With the introduction of 2.4.3 (https://github.com/webpack/webpack-dev-server/releases/tag/v2.4.3), host headers are now explicitly being checked for all calls. That seems sane, but where before I could specify several hosts to proxy calls to:
I now have to add:
Or i get an invalid host message like seen in #882. I would expect that there would be a mechanism that would let me specify more than one
public
path since there is a means of specifying more than one public proxy. Perhaps makepublic
take an array of paths?The text was updated successfully, but these errors were encountered: