diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 08a8006..05a70b1 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -4,8 +4,15 @@ import {SocketIOProvider} from "use-socketio/lib"; import Wrapper from "./Wrapper"; const App = () => { + let host; + if (window.location.hostname === "centurion.svia.nl") { + host = "https://centurion.svia.nl"; + } else { + host = window.location.protocol + "//" + window.location.hostname + ":3001"; + } + return ( - + );