nestjs 마이크로서비스 초기 구성중 실행 문제
nest new nestjs-msacd nestjs-msanest g app user-servicenest g app api-gateway 각 서비스는 apps/ 폴더 밑에 생성됨 user-service/main.ts 수정import { NestFactory } from '@nestjs/core';import { MicroserviceOptions, Transport } from '@nestjs/microservices';import { UserServiceModule } from './user-service.module';async function bootstrap() { const app = await NestFactory.createMicroservice( UserServiceModule, ..