작성
·
516
·
수정됨
0
문서와 동일하고 동영상과 동일하게 작성했습니다.
npm install --save @nestjs/swagger
그런데 404가 뜨네요... 원인을 잘 모르겠습니다.
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import * as process from 'process';
import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger';
declare const module: any;
async function bootstrap() {
const app = await NestFactory.create(AppModule);
const port = process.env.PORT;
await app.listen(port);
console.log(`listening on port ${port}`);
const config = new DocumentBuilder()
.setTitle('Sleact Api')
.setDescription('Sleact 개발을 위한 API 문서')
.setVersion('1.0')
.addTag('sleact')
.build();
const document = SwaggerModule.createDocument(app, config);
SwaggerModule.setup('api', app, document);
if (module.hot) {
module.hot.accept();
module.hot.dispose(() => app.close());
}
}
bootstrap();
네네 app.listen보다 위에있어야합니다