From 635a1224cdb4eb24e4409b2e26944e6fdd3d855b Mon Sep 17 00:00:00 2001 From: Sicherhaven Date: Sat, 4 Apr 2026 18:56:47 +0530 Subject: [PATCH] fix: add localhost:8080 to CORS_ALLOWED_ORIGINS for Flutter web preview --- eventify/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eventify/settings.py b/eventify/settings.py index 0d5aa6f..d5df4aa 100644 --- a/eventify/settings.py +++ b/eventify/settings.py @@ -45,6 +45,7 @@ INSTALLED_APPS = [ 'admin_api', 'django_summernote', 'ledger', + 'notifications', ] INSTALLED_APPS += [ @@ -73,6 +74,7 @@ CORS_ALLOWED_ORIGINS = [ "http://localhost:5173", "http://localhost:3001", "http://localhost:3000", + "http://localhost:8080", "https://prototype.eventifyplus.com", "https://eventifyplus.com", "https://mv.eventifyplus.com",