fix: remove unused ValidationPipe import in main.ts

The ValidationPipe import was commented out and not being used in the code. This commit removes the unused import to clean up the code and avoid potential confusion. The Logger import remains active and is still in use.
This commit is contained in:
Viktoria Polyakova
2026-01-25 22:06:44 +00:00
parent 3bc0bc1833
commit de283d2a93

View File

@@ -5,8 +5,8 @@ import { NestFactory } from '@nestjs/core';
if (!global.crypto) { if (!global.crypto) {
global.crypto = webcrypto as any; global.crypto = webcrypto as any;
} }
//import { Logger } from '@nestjs/common'; import { Logger } from '@nestjs/common';
import { Logger, ValidationPipe } from '@nestjs/common'; //import { Logger, ValidationPipe } from '@nestjs/common';
import { NestExpressApplication } from '@nestjs/platform-express'; import { NestExpressApplication } from '@nestjs/platform-express';
import { utilities, WinstonModule } from 'nest-winston'; import { utilities, WinstonModule } from 'nest-winston';
import winston from 'winston'; import winston from 'winston';