bug fixes

This commit is contained in:
Aidan Haas
2025-07-08 12:37:29 -04:00
parent 2f4cdc25ce
commit e9a7fe9b25
3 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ from flask_cors import CORS
from flask_socketio import SocketIO
app = Flask(__name__)
CORS(app, origins=["http://localhost:3000"])
CORS(app, origins=["http://localhost:3000", "10.*"])
socketio = SocketIO(app, cors_allowed_origins="*")