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

@@ -1,8 +1,10 @@
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { configureApplication } from './app.config';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
configureApplication(app);
await app.listen(process.env.PORT ?? 3000);
}
bootstrap();