My react app starts smoothly on first opening , then after any refresh i start getting 403 forbidden error , which makes my development super slow. any solution will be welcomed !
Backend running on Python Flask following are configs for CORS :
CORS(app, resources={r"/*": {"origins": ["http://localhost:3000","http://127.0.0.1:3000/"]}})socketio = SocketIO(app, cors_allowed_origins="*") Running on Mac m2
