-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
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
Proxy settings do not accept an array but array passes validations and fails silently #3524
Comments
@LinusBorg It gives no information that array is not supported in vue, even its valid in the middleware. Or better, just allow arrays and use the same syntax & options like http-proxy-middleware, as you refer in the docs. |
In my opinion its kinda dumb to pass down the config instead of using the webpack dev server (and middleware) directly. If all options arent fully supported, you shouldnt mention the http-proxy-middleware documentation inside vue's docs (https://cli.vuejs.org/config/#devserver-proxy). |
I got caught by this as well. If the proxy is capable of interpreting an array, surely it can just be passed through. |
Version
3.4.1
Steps to reproduce
in vue config set proxy config to:
What is expected?
The http-proxy-middleware package accepts an array as a config option (https://github.com/chimurai/http-proxy-middleware#context-matching) but this is not supported by vue-cli. Vue cli should warn the user that the array syntax is unsupported.
What is actually happening?
No error is raised because in the prepareProxy function in prepareProxy.js typeof proxy !== 'object' is used to check that the proxy config is an object, but an array passes this test. The typeof an Array is 'object'.
The text was updated successfully, but these errors were encountered: