6 lines
153 B
TypeScript
6 lines
153 B
TypeScript
|
|
import { io } from "socket.io-client";
|
||
|
|
|
||
|
|
const URL = import.meta.env.PROD === true ? undefined : "http://localhost:5173";
|
||
|
|
|
||
|
|
export const socket = io(URL);
|