Skip to content
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

Closed
aldencolerain opened this issue Feb 26, 2019 · 3 comments · Fixed by #3525
Closed

Comments

@aldencolerain
Copy link

Version

3.4.1

Steps to reproduce

in vue config set proxy config to:

devServer: {
  overlay: {
    warnings: true,
    errors: true
  },
  host: '0.0.0.0',
  disableHostCheck: true,
  index: '',
  proxy:[{
    context: ['/**', '!/app.js', '!/sockjs-node/**'],
    target: 'http://localhost:8000'
  }]
}

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'.

LinusBorg added a commit that referenced this issue Feb 26, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
close #3524
@BennyAlex
Copy link

BennyAlex commented Aug 3, 2020

@LinusBorg
The error message is not concrete enough, see #5740.

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.

@BennyAlex
Copy link

BennyAlex commented Aug 3, 2020

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).

@LukeusMaximus
Copy link

I got caught by this as well. If the proxy is capable of interpreting an array, surely it can just be passed through.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants