I've installed Flask CORS on my pythonanywhere account per flask-cors.readthedocs.io using
pips3.6 install --user flask-cors
I've loaded it in my app using:
from flask_cors import CORS
app = Flask(__name__)
CORS(app)
But nothing! When I load the page, I still get CORS errors. There is no indication in the pythonanywhere that any of the modules are missing or anything.
Reading the documentation for flask-cors I got the impression that once up and running, any CORS errors should be resolved for all pages in the site.
How can I get this to work?