add jwt whit cookie

This commit is contained in:
2025-09-12 20:41:51 -06:00
parent 873f34164f
commit ebec29e9e1
4 changed files with 25 additions and 13 deletions
+3 -3
View File
@@ -10,9 +10,9 @@ 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);