Open pzac opened 7 years ago
Bug
4 - HMR
yarn dev:wds was triggering an error
yarn dev:wds
url.js:576 host = auth + (this.hostname.indexOf(':') === -1 ? ^ TypeError: this.hostname.indexOf is not a function
The error persisted until I added the host flag to the dev:wds script in package.json:
dev:wds
package.json
"dev:wds": "webpack-dev-server --progress --host 0.0.0.0",
seems webpack-dev-server's problem since webpack-dev-server@2.8.2
Why? :c
Type of issue: (feature suggestion, bug?)
Bug
Chapter:
4 - HMR
If it's a bug:
yarn dev:wds
was triggering an errorThe error persisted until I added the host flag to the
dev:wds
script inpackage.json
: