Files
lead-management-react-nest-…/backend/src/main.ts
2026-03-06 13:31:28 +08:00

10 lines
248 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(process.env.PORT ?? 3000);
}
bootstrap();