设置全局路由前缀
main.ts
typescript
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.setGlobalPrefix('api'); // 设置全局路由前缀
await app.listen(9080);
}
bootstrap();http://localhost/api/xxxx