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:
parent
4504d9f3cd
commit
c66cafd362
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue