fix: prefix API routes

This commit is contained in:
Bastian Wagner
2026-08-18 18:13:48 +02:00
parent 2903a0d670
commit 1210ba2d15
3 changed files with 24 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
import { INestApplication } from '@nestjs/common';
export function configureApplication(app: INestApplication): void {
app.setGlobalPrefix('api');
}