I'm assuming this behaviour is by design, but I'm looking to learn of any practical alternatives.
In short, I already have a few global providers that were supposed to be app-wide such as for example:
{
provide: APP_PIPE,
useValue: new ValidationPipe({
transform: true,
forbidUnknownValues: true,
forbidNonWhitelisted: true,
whitelist: true,
}),
},
Unfortunately come to find out those do not trigger on WS gateways. (Unless I'm doing something wrong of course).
If so, what's the best practice in that scenario?
Thanks.

