Dynamic port

master
Wilco Kruijer 4 years ago
parent 9acfb146ab
commit 3854a0cd27
  1. 9
      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 (
<SocketIOProvider url={window.location.protocol + "//" + window.location.hostname + ":3001"}>
<SocketIOProvider url={host}>
<Wrapper/>
</SocketIOProvider>
);

Loading…
Cancel
Save