노마드 코더 줌 클론 강의를 그대로 진행하다보면
socket.io의 admin ui 를 실행했을때 xhr poll error 가 발생합니다.
1. https://admin.socket.io 에 접속한다.
2. 아래와 같이 세팅한다.
Server URL : http://localhost:3000
* 맨 끝 슬래시가 있으면 안됩니다. [X] http://localhost:3000/
Advanced options: 체크
WebSocket only?: 체크
Admin namespace: /admin (기본설정)
설정 코드는 다음과 같습니다.
import { Server } from 'socket.io'
import { instrument } from '@socket.io/admin-ui'
...
const httpServer = http.createServer(app)
const wsServer = new Server(httpServer, {
cors: {
origin: ['https://admin.socket.io'],
Credentials: true,
},
})
instrument(wsServer, {
auth: false,
})
...
반응형
'ERROR' 카테고리의 다른 글
도로명주소 검색 API 연결 시간 초과 (0) | 2021.10.14 |
---|---|
도로명주소 검색 API UnknownHostException 발생 (0) | 2021.10.07 |
도로명주소 검색 API 사용시 발생하는 cors policy 에러 (0) | 2021.10.07 |