summary refs log tree commit diff
path: root/bundle
diff options
context:
space:
mode:
Diffstat (limited to 'bundle')
-rw-r--r--bundle/src/Server.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle/src/Server.ts b/bundle/src/Server.ts
index 0ef7a8a3..faf8a324 100644
--- a/bundle/src/Server.ts
+++ b/bundle/src/Server.ts
@@ -10,7 +10,7 @@ import { Config } from "../../util/dist";
 
 const app = express();
 const server = http.createServer();
-const port = Number(process.env.PORT) || 8080;
+const port = Number(process.env.PORT) || 3001;
 const production = false;
 server.on("request", app);