Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DKrepsky/e9c0ae279eb7ec61adda966735ff0de6 to your computer and use it in GitHub Desktop.
Save DKrepsky/e9c0ae279eb7ec61adda966735ff0de6 to your computer and use it in GitHub Desktop.
Fix Vue webpack dev server net::ERR_CONNECTION_REFUSED
Install IP package:
```
npm install ip --save-dev
```
Add dev server config to vue.config.js
```js
module.exports = {
publicPath: '',
devServer :{
host : require("ip").address(),
disableHostCheck : true
}
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment