pull/83/head
parent
31885d7910
commit
3868212543
@ -0,0 +1,7 @@
|
||||
const ADRESSE_WEBSERVER = "http://localhost:3002"
|
||||
|
||||
const ADRESSE_DBSERVER = "http://localhost:3003"
|
||||
|
||||
const ADRESSE_WEBSITE = ""
|
||||
|
||||
export {ADRESSE_DBSERVER, ADRESSE_WEBSERVER, ADRESSE_WEBSITE}
|
@ -1,6 +1,7 @@
|
||||
import { io } from "socket.io-client";
|
||||
import {ADRESSE_WEBSERVER} from "./AdressConfig"
|
||||
|
||||
|
||||
const socket = io("http://localhost:3002");
|
||||
const socket = io(ADRESSE_WEBSERVER);
|
||||
|
||||
export {socket}
|
Loading…
Reference in new issue