From 5f190b980e9d6fc7590875d270c93966f09d1bb4 Mon Sep 17 00:00:00 2001 From: nicolinabl Date: Wed, 25 Feb 2026 11:58:02 +0100 Subject: [PATCH] frontend connection --- frontend/src/socket.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 frontend/src/socket.js diff --git a/frontend/src/socket.js b/frontend/src/socket.js new file mode 100644 index 0000000000..0f228f3346 --- /dev/null +++ b/frontend/src/socket.js @@ -0,0 +1,5 @@ +import { io } from 'socket.io-client' +import { apiUrl } from '../api' + +export const socket = io(apiUrl) +