Global prefix

To set a prefix for every route registered in an HTTP application, use the setGlobalPrefix() method of the INestApplication instance.

  1. const app = await NestFactory.create(AppModule);
  2. app.setGlobalPrefix('v1');