added new Ep

This commit is contained in:
IO420
2025-10-02 17:03:25 -06:00
parent 7370e25e89
commit 7546de4a1b
13 changed files with 49 additions and 46 deletions
+3 -4
View File
@@ -10,11 +10,10 @@ async function bootstrap() {
app.useGlobalPipes(new ValidationPipe());
app.enableCors(
{
origin: configService.get<string>('Front_URL'),
}
// {
// origin: configService.get<string>('Front_URL'),
// }
);
await app.listen(process.env.PORT ?? 3000);
}
bootstrap();