Utilisation d'un préfixe global
This commit is contained in:
@ -6,6 +6,7 @@ import { ClassSerializerInterceptor, ValidationPipe } from '@nestjs/common'
|
||||
async function bootstrap() {
|
||||
const app = await NestFactory.create(AppModule, { cors: true })
|
||||
|
||||
app.setGlobalPrefix(process.env.API_GLOBAL_PREFIX ?? '')
|
||||
app.useGlobalPipes(new ValidationPipe({ transform: true }))
|
||||
app.useGlobalInterceptors(new ClassSerializerInterceptor(app.get(Reflector)))
|
||||
|
||||
@ -17,7 +18,7 @@ async function bootstrap() {
|
||||
.build()
|
||||
const document = SwaggerModule.createDocument(app, config)
|
||||
|
||||
SwaggerModule.setup('', app, document)
|
||||
SwaggerModule.setup(process.env.API_GLOBAL_PREFIX ?? '', app, document)
|
||||
await app.listen(process.env.PORT ?? 3000)
|
||||
}
|
||||
bootstrap()
|
||||
|
Reference in New Issue
Block a user