Swagger setup
const swagger = new DocumentBuilder()
.setTitle('API')
.setVersion('0.1.0')
.addCookieAuth('access_token')
.build();
SwaggerModule.setup('docs', app, SwaggerModule.createDocument(app, swagger));addCookieAuth registers the same cookie scheme the controllers reference with @ApiCookieAuth.