From f0fcc0f125bedb331190d2b392328e58e64a9dc1 Mon Sep 17 00:00:00 2001 From: Johan Date: Wed, 17 Dec 2025 14:22:58 +0100 Subject: [PATCH] TP done V2 --- src/app/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/config.py b/src/app/core/config.py index 6c1eec9..c84b495 100644 --- a/src/app/core/config.py +++ b/src/app/core/config.py @@ -29,6 +29,6 @@ class Settings(BaseSettings): # Configuration CORS # Pydantic va automatiquement convertir la chaîne de caractères séparée par des virgules # en une liste de chaînes de caractères. - BACKEND_CORS_ORIGINS: List[AnyHttpUrl] = [] + BACKEND_CORS_ORIGINS: List[AnyHttpUrl] = ["http://localhost:4200"] settings = Settings()