Merge pull request #11 from k-puig/feature/events

socket set up
This commit is contained in:
2025-09-28 08:37:50 -04:00
committed by GitHub

View File

@@ -0,0 +1,5 @@
import { io } from "socket.io-client";
const URL = import.meta.env.PROD === true ? undefined : "http://localhost:5173";
export const socket = io(URL);