Files
api_directorio/src/main.ts
T
2024-06-17 00:59:28 -06:00

10 lines
228 B
TypeScript

import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.enableCors();
await app.listen(3000);
}
bootstrap();