From c8a6893cd033cf8acd9e41a49f37413937312192 Mon Sep 17 00:00:00 2001 From: Alix JEUDI--LEMOINE Date: Thu, 29 May 2025 15:16:35 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Moved=20environment=20file=20(on?= =?UTF-8?q?e=20of=20the=20two=20was=20totally=20unuseful)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/{environments => }/environment.ts | 2 +- src/environments/environment.development.ts | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) rename src/{environments => }/environment.ts (50%) delete mode 100644 src/environments/environment.development.ts diff --git a/src/environments/environment.ts b/src/environment.ts similarity index 50% rename from src/environments/environment.ts rename to src/environment.ts index 656a36f..d975dfb 100644 --- a/src/environments/environment.ts +++ b/src/environment.ts @@ -1,4 +1,4 @@ export const environment = { production: true, - apiURL: 'https://api.memorymap.fr/api/v1/admin', + apiURL: 'http://127.0.0.1:8000/api/v1', }; diff --git a/src/environments/environment.development.ts b/src/environments/environment.development.ts deleted file mode 100644 index 89fad4e..0000000 --- a/src/environments/environment.development.ts +++ /dev/null @@ -1,4 +0,0 @@ -export const environment = { - production: false, - apiURL: 'https://api.memorymap.fr/api/v1', -};