security: remove localhost origins from CORS allowed list #48

Merged
Saani merged 1 commits from feature/meetings into main 2025-11-28 10:51:29 +00:00

View File

@ -16,8 +16,6 @@ ALLOWED_HOSTS = os.getenv('ALLOWED_HOSTS', '*').split(',')
# CORS Configuration
CORS_ALLOWED_ORIGINS = [
'http://localhost:3000',
'http://127.0.0.1:3000',
'https://attunehearttherapy.com'
]