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