본문 바로가기
ERROR

[ERROR]노마드 코더 / xhr poll error / socket.io / admin ui

by SOLYI 2023. 1. 26.

노마드 코더 줌 클론 강의를 그대로 진행하다보면

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,
})

...

 

 

 

반응형