강동현
Builds for 1 pipeline failed in 1 minute 24 seconds

소켓 서버 주소 https로 변경

import React from "react";
import { io } from "socket.io-client";
export const socket = io(`http://${window.location.hostname}:3000/`);
export const socket = io(`https://${window.location.hostname}:3000/`);
const SocketContext = React.createContext(socket);
export const SocketProvider = SocketContext.Provider;
......