diff --git a/app.py b/app.py index 9987622..d10c68e 100644 --- a/app.py +++ b/app.py @@ -7,7 +7,8 @@ load_dotenv() app= Flask(__name__) -CORS(app, resources={r"/*": {"origins": "https://contactify.codechefvit.com", "methods": ["GET", "POST"]}}) +CORS(app) +#CORS(app, resources={r"/*": {"origins": "https://contactify.codechefvit.com", "methods": ["GET", "POST"]}}) app.config['MAX_CONTENT_LENGTH'] = 1024*1024*1024 @app.errorhandler(Exception)