1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Remove hardcoded address from ws example. (#2204)

With a hard coded address on the client, the app no longer works when deploying, which is annoying since there's a handy 'deploy now' button on the readme.

By removing the hard coded address socket.io will connect to the location host automatically so it works both on development and production.
This commit is contained in:
Adrian le Bas 2017-06-08 19:11:08 +02:00 committed by Tim Neutkens
parent 4504d9f3cd
commit c66cafd362

View file

@ -22,7 +22,7 @@ class HomePage extends Component {
// connect to WS server and listen event
componentDidMount () {
this.socket = io('http://localhost:3000/')
this.socket = io()
this.socket.on('message', this.handleMessage)
}