diff --git a/backend/app/main.py b/backend/app/main.py index c6b367d..882a400 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -66,7 +66,7 @@ def create_application() -> FastAPI: CORSMiddleware, allow_origins=settings.CORS_ORIGINS, allow_credentials=True, - allow_methods=["*"], + allow_methods=["GET", "POST", "PUT", "DELETE", "OPTIONS"], allow_headers=["*"], )