From f0dc5bcdd56e6705b4adcd1f5fbbfb9ba107424f Mon Sep 17 00:00:00 2001 From: eggman20339 Date: Wed, 15 Jan 2025 17:37:52 -0500 Subject: [PATCH] again --- server.js | 2 +- src/App.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/server.js b/server.js index d53d7b3..42e3a93 100644 --- a/server.js +++ b/server.js @@ -11,7 +11,7 @@ const path = require('path'); // for serving the React build const app = express(); // ----- CONFIG ----- -const PORT = 4000; +const PORT = 80; // Default base counts const SOLO_BASE_COUNT = 5; diff --git a/src/App.js b/src/App.js index c1b8cc1..2419352 100644 --- a/src/App.js +++ b/src/App.js @@ -1,6 +1,6 @@ import React, { useState, useEffect, useRef } from 'react'; -const SERVER_URL = 'http://localhost:4000'; +const SERVER_URL = 'http://localhost:80'; export default function App() { // -----------------------------