DEV Community

Discussion on: Decorate Swagger DTO Descriptions for @ApiProperty() Dynamically?

Collapse
 
darraghor profile image
Darragh O'Riordan

You could try to do the fetching OUTSIDE of the bootstrapping? I haven't tried this though

async function bootstrap() {
  const app = await NestFactory.create(AppModule);

  await app.listen(configuredPort);
}

DO YOUR FETCHING HERE AND SET TO SOME EXPORTED CONST?
export const myDescription = fetch(blah blah)

// eslint-disable-next-line @typescript-eslint/no-floating-promises
bootstrap();
Enter fullscreen mode Exit fullscreen mode