Files
api_directorio/src/main.ts
T

10 lines
241 B
TypeScript
Raw Normal View History

2024-06-05 00:23:18 -06:00
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
2024-06-13 15:12:24 -06:00
app.enableCors();//activa cors
2024-06-05 00:23:18 -06:00
await app.listen(3000);
}
bootstrap();