diff --git a/server/src/main.ts b/server/src/main.ts index 7f7936d..7092147 100644 --- a/server/src/main.ts +++ b/server/src/main.ts @@ -2,11 +2,13 @@ import { NestFactory, Reflector } from '@nestjs/core' import { AppModule } from './app.module' import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger' import { ClassSerializerInterceptor, ValidationPipe } from '@nestjs/common' +import { IoAdapter } from '@nestjs/platform-socket.io' async function bootstrap() { const app = await NestFactory.create(AppModule, { cors: true }) app.setGlobalPrefix(process.env.API_GLOBAL_PREFIX ?? '') + app.useWebSocketAdapter(new IoAdapter(app)) app.useGlobalPipes(new ValidationPipe({ transform: true })) app.useGlobalInterceptors(new ClassSerializerInterceptor(app.get(Reflector)))