Setting up jwt api things:
const options = new DocumentBuilder()
.setTitle('My App')
.setSchemes('https')
.setDescription('My App API documentation')
.setVersion('1.0')
.addBearerAuth()
.build()
Nestjs decorator:
@ApiBearerAuth()