Closed
Description
Version
3.10.0
Reproduction link
https://github.com/fleebzz/vue-cli-sockjs-path-issue
Environment info
System:
OS: Linux 4.9 Debian GNU/Linux 9 (stretch) 9 (stretch)
CPU: (2) x64 Intel(R) Core(TM) i7-4650U CPU @ 1.70GHz
Binaries:
Node: 12.7.0 - /usr/local/bin/node
Yarn: 1.17.3 - /usr/local/bin/yarn
npm: 6.10.0 - /usr/local/bin/npm
Browsers:
Chrome: Not Found
Firefox: Not Found
npmPackages:
@vue/babel-helper-vue-jsx-merge-props: 1.0.0
@vue/babel-plugin-transform-vue-jsx: 1.0.0
@vue/babel-preset-app: 3.10.0
@vue/babel-preset-jsx: 1.1.0
@vue/babel-sugar-functional-vue: 1.0.0
@vue/babel-sugar-inject-h: 1.0.0
@vue/babel-sugar-v-model: 1.0.0
@vue/babel-sugar-v-on: 1.1.0
@vue/cli-overlay: 3.10.0
@vue/cli-plugin-babel: ^3.10.0 => 3.10.0
@vue/cli-plugin-eslint: ^3.10.0 => 3.10.0
@vue/cli-service: ^3.10.0 => 3.10.0
@vue/cli-shared-utils: 3.10.0
@vue/component-compiler-utils: 2.6.0 (3.0.0)
@vue/preload-webpack-plugin: 1.1.1
@vue/web-component-wrapper: 1.2.0
eslint-plugin-vue: ^5.0.0 => 5.2.3 (4.7.1)
vue: ^2.6.10 => 2.6.10
vue-eslint-parser: 5.0.0 (2.0.3)
vue-hot-reload-api: 2.3.3
vue-loader: 15.7.1
vue-style-loader: 4.1.2
vue-template-compiler: ^2.6.10 => 2.6.10
vue-template-es2015-compiler: 1.9.1
npmGlobalPackages:
@vue/cli: 3.10.0
Steps to reproduce
- Clone the repo
- Run
yarn serve
- Browse
http://localhost:9090/sub-folder
- Observe in Network pan two requests for sockjs-node :
GET http://localhost:9090/sub-folder/sockjs-node/info
which succeedsGET http://localhost:9090/sockjs-node/info
wich fails
What is expected?
Only one /info
request
What is actually happening?
Two requests to sockjs-node/info
with one ignoring the custom socket path
Second request should not happen and throws a lot of 404 errors in console.
The error seems to come from vue-cli
and not from webpack-dev-server
. See following repository with same behavior but without vue-cli
and only webpack-dev-server
, it works : https://github.com/fleebzz/webpack-sockjs-path-issue.