๐ฉโ๐ป NestJS ่จญๅฎๅๅ Port
ๆผๆชๆก src/main.ts
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3050);
}
bootstrap();