projeto-hit/frontend/src/services/socket.js

13 lines
366 B
JavaScript
Raw Normal View History

import { io } from 'socket.io-client';
// "undefined" means the URL will be computed from the `window.location` object
const URL = process.env.REACT_APP_BACKEND_URL
2024-05-20 13:00:45 +00:00
export const socket = io(URL, {
path: "/api-ws/socketio",
withCredentials: true,
extraHeaders: {
"my-custom-header": "abcd"
},
// transports: ['websocket', 'polling']
});