Flask CORS issue - OPTION request is not passed Flask CORS issue - OPTION request is not passed flask flask

Flask CORS issue - OPTION request is not passed


I am surprised that you are facing CORS issue even if you use the following:

CORS(app)

Just try follwing:

CORS(app, origins=['127.0.0.1:4200'])

I hope this will solve your issue. Let me know if you still face the issue.