diff --git a/api/server.py b/api/server.py index a72e1fa..87a2b39 100644 --- a/api/server.py +++ b/api/server.py @@ -3,7 +3,7 @@ from flask_cors import CORS # instantiate the webservice app = connexion.App(__name__) -app.add_api('openapi.yaml') +app.add_api('openapi.yaml', options = {"swagger_ui": False}) # CORSify it - otherwise Angular won't accept it CORS(app.app,