From 9fd3a76546a8cd2bb85cf2403ef4894203111496 Mon Sep 17 00:00:00 2001 From: RochesterX Date: Wed, 12 Nov 2025 10:15:10 -0500 Subject: [PATCH] Update server.js --- server.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.js b/server.js index 53038a2..ef945d4 100644 --- a/server.js +++ b/server.js @@ -5,7 +5,7 @@ const cors = require("cors"); const jwt = require("jsonwebtoken") const dotenv = require("dotenv") -const serverPort = 3000; +const serverPort = 3001; const dev = process.argv.length > 2 && process.argv[2] == "-dev"; @@ -15,7 +15,7 @@ app.use(express.static("public")) app.use(cors({ origin: [ "https://project.rochesterx.dev", - "https://localhost:3000" + "https://localhost:3001" ] }));