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);
|
2023-02-17 15:06:59 -06:00
|
|
|
app.enableCors()
|
2023-02-16 16:49:52 -06:00
|
|
|
await app.listen(AppModule.port);
|
2023-02-09 16:10:08 -06:00
|
|
|
}
|
|
|
|
|
bootstrap();
|