From 689cedb3ff7e4a2e504dda0bc91210a5243219fe Mon Sep 17 00:00:00 2001 From: Vivek Date: Fri, 19 Dec 2025 21:48:51 +0530 Subject: [PATCH] Update in the settings for the cors allowed origins --- eventify/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eventify/settings.py b/eventify/settings.py index 492b976..396b9ce 100644 --- a/eventify/settings.py +++ b/eventify/settings.py @@ -47,8 +47,10 @@ MIDDLEWARE = [ 'corsheaders.middleware.CorsMiddleware', 'django.middleware.common.CommonMiddleware', ] + CORS_ALLOWED_ORIGINS = [ "http://localhost:5173", + "https://prototype.eventifyplus.com/" ] ROOT_URLCONF = 'eventify.urls'