#Debugger
3 messages · Page 1 of 1 (latest)
Hey! you can change your application port on the main.ts file as follows:
async function bootstrap() {
const app = await NestFactory.createMicroservice<MicroserviceOptions>;
await app.listen(3000); //Here you change the port from your app
}
bootstrap();
Hey, I mean the debugger port not the server port