Global prefix
To set a prefix for every route registered in an HTTP application, use the setGlobalPrefix()
method of the INestApplication
instance.
const app = await NestFactory.create(AppModule);
app.setGlobalPrefix('v1');
To set a prefix for every route registered in an HTTP application, use the setGlobalPrefix()
method of the INestApplication
instance.
const app = await NestFactory.create(AppModule);
app.setGlobalPrefix('v1');