[Nest.js] Swagger사용 방법
nest js 공식 문서에 OPEN API npm install --save @nestjs/swagger swagger-ui-express 설치 한다. main.ts에서 import { NestFactory } from '@nestjs/core'; import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger'; import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); const config = new DocumentBuilder() .setTitle('여기는 타이틀') .setDescription..
2021.07.30