From e6b6761e354a3f1685b447e70e22483214c080ed Mon Sep 17 00:00:00 2001 From: Muungi Date: Mon, 1 Apr 2024 23:07:38 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20DB=20=EC=84=9C=EB=B2=84=20=EC=9D=B4?= =?UTF-8?q?=EC=A0=84=EC=9C=BC=EB=A1=9C=20=EC=9D=B8=ED=95=9C=20typeorm=20?= =?UTF-8?q?=EC=97=B0=EA=B2=B0=20=EC=84=A4=EC=A0=95=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/configs/typeorm.config.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/backend/src/configs/typeorm.config.ts b/backend/src/configs/typeorm.config.ts index ecaf372..75e611e 100644 --- a/backend/src/configs/typeorm.config.ts +++ b/backend/src/configs/typeorm.config.ts @@ -10,7 +10,4 @@ export const TypeOrmConfig: TypeOrmModuleOptions = { database: DB_NAME, entities: ['dist/**/*.entity{.ts,.js}'], synchronize: NODE_ENV === 'dev', - ssl: { - rejectUnauthorized: NODE_ENV === 'prod', - }, };