From 819eb2796ae0f835ce07cdbb91c2c65b9f8fd85c Mon Sep 17 00:00:00 2001 From: King-Mikaelson Date: Mon, 12 Aug 2024 07:29:47 +0100 Subject: [PATCH] feat(profile-pic): implemented change profile picture --- src/helpers/app-constants.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/helpers/app-constants.ts b/src/helpers/app-constants.ts index 5caab41ea..198cdbe2c 100644 --- a/src/helpers/app-constants.ts +++ b/src/helpers/app-constants.ts @@ -2,6 +2,5 @@ import * as path from 'path'; export const MAX_PROFILE_PICTURE_SIZE = 2 * 1024 * 1024; export const VALID_UPLOADS_MIME_TYPES = ['image/jpeg', 'image/png']; -// export const BASE_URL = "https://staging.api-nestjs.boilerplate.hng.tech"; -export const BASE_URL = "http://localhost:3008"; +export const BASE_URL = "https://staging.api-nestjs.boilerplate.hng.tech"; export const PROFILE_PHOTO_UPLOADS = path.join(__dirname, '..', 'uploads') \ No newline at end of file