From 5e4a1765def518d8f4e77fb2659c7b4f1cbb96be Mon Sep 17 00:00:00 2001 From: Vivek Date: Sat, 20 Dec 2025 01:37:36 +0530 Subject: [PATCH] Update in the cors allowed origins --- eventify/settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eventify/settings.py b/eventify/settings.py index 396b9ce..f81e1cd 100644 --- a/eventify/settings.py +++ b/eventify/settings.py @@ -50,7 +50,8 @@ MIDDLEWARE = [ CORS_ALLOWED_ORIGINS = [ "http://localhost:5173", - "https://prototype.eventifyplus.com/" + "https://prototype.eventifyplus.com/", + "https://eventifyplus.com/" ] ROOT_URLCONF = 'eventify.urls'