Я использую Nestjs v7.0
, субдомены и базовые маршруты мешают.
app.controller.ts: http://localhost:3000
Hello World!
@Controller()
export class AppController {
@Get()
getHello(): string {
return 'Hello World!';
}
}
another.controller.ts: http://something.localhost:3000
Hello World!
@Controller({
host: ':account', // ':account.localhost' -> also tested
})
export class AnotherController {
@Get()
index(@HostParam('account') account: string) {
return 'running from sub domain';
}
}