Skip to content

Commit

Permalink
✏️ [#1]Fix: 스웨거 제목 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
labyrinth30 committed Jun 26, 2024
1 parent f01cf44 commit 5856e7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/util/swagger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import { SwaggerModule, DocumentBuilder } from '@nestjs/swagger';
*/
export function setupSwagger(app: INestApplication): void {
const options = new DocumentBuilder()
.setTitle('NestJS Study API Docs')
.setDescription('NestJS Study API description')
.setTitle('스쿠톤 3팀 API Docs')
.setDescription('Skhuthon Team03 API description')
.setVersion('1.0.0')
.build();

const document = SwaggerModule.createDocument(app, options);
SwaggerModule.setup('api-docs', app, document);
}
}

0 comments on commit 5856e7a

Please sign in to comment.