From 7686b0a0f6dc780f4c7e27dcd6e249e35125f567 Mon Sep 17 00:00:00 2001 From: HenriBoulnois Date: Sat, 15 Jan 2022 11:58:24 +0100 Subject: [PATCH] Update app.module :wrench: --- src/app.module.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/app.module.ts b/src/app.module.ts index 35d4026..b01b395 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -18,11 +18,6 @@ import { TypeOrmModule, TypeOrmModuleOptions } from '@nestjs/typeorm'; entities: [__dirname + '/**/*.entity{.ts,.js}'], synchronize: true, logging: configService.isLoggingDb ? 'all' : false, - extra: { - ssl: { - rejectUnauthorized: false - }, - }, }), inject: [ConfigService], }),