Files
cedetec_api_nest/src/main.ts
T

10 lines
237 B
TypeScript
Raw Normal View History

2023-02-09 16:10:08 -06:00
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
app.enableCors()
await app.listen(AppModule.port);
2023-02-09 16:10:08 -06:00
}
bootstrap();