This commit is contained in:
eggman20339 2025-01-15 17:37:52 -05:00
parent 00f6607e06
commit f0dc5bcdd5
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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() {
// -----------------------------