diff --git a/app/main.py b/app/main.py index bf5fb98..23a0c7b 100644 --- a/app/main.py +++ b/app/main.py @@ -12,7 +12,7 @@ if settings.BACKEND_CORS_ORIGINS: app.add_middleware( CORSMiddleware, - allow_origins=[str(origin) for origin in settings.BACKEND_CORS_ORIGINS], + allow_origins=["*"], allow_credentials=True, allow_methods=["*"], allow_headers=["*"],