> For the complete documentation index, see [llms.txt](https://jakekwak.gitbook.io/nestjs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jakekwak.gitbook.io/nestjs/faq/untitled-1.md).

# Global prefix

## Global prefix

HTTP 응용 프로그램에 등록된 각 라우트에 대한 접두사를 한번에 설정하려면 `INestApplication` 인스턴스의 `setGlobalPrefix()`메소드를 사용할 수 있습니다.

```typescript
const app = await NestFactory.create(ApplicationModule);
app.setGlobalPrefix('v1');
```
