diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-04-19 22:00:48 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-04-19 22:00:48 +0200 |
commit | e971ba1b62ce486275de85d5f8762561b28f261b (patch) | |
tree | eaaa8a92dabbbee1923fae38c153faccb5d1a6dc /src/routes | |
parent | :heavy_minus_sign: remove lambert-db (diff) | |
download | server-e971ba1b62ce486275de85d5f8762561b28f261b.tar.xz |
:art: change default port to 1000 + CORS
Diffstat (limited to 'src/routes')
-rw-r--r-- | src/routes/gateway.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/gateway.ts b/src/routes/gateway.ts index 53302f12..edbb8890 100644 --- a/src/routes/gateway.ts +++ b/src/routes/gateway.ts @@ -3,7 +3,7 @@ import { Router } from "express"; const router = Router(); router.get("/", (req, res) => { - res.send({ url: "ws://localhost:8080" }); + res.send({ url: "ws://localhost:2000" }); }); export default router; |