/
estisui
/
js-react-developer-project-12
Обзор
Документация
Войти
/
estisui
/
js-react-developer-project-12
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
frontend/src/socket.js
10 строк
285 B
Stepan Sukhachev
refactor: eslint rules fix + fix remaining errors
06 ноя 2023, 21:34
06 ноя 2023, 21:34
bca8e3b
Код
Авторство
О чём код?
import { io } from 'socket.io-client'; // "undefined" means the URL will be computed from the `window.location` object const URL = process.env.NODE_ENV === 'production' ? undefined : 'http://localhost:4000'; const socket = io(URL, { autoConnect: false, }); export default socket;