We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When I use Nest's SSE, it seems like the data part has disappeared.
To Reproduce In the controller, I use a code sample from NestJS. https://docs.nestjs.com/techniques/server-sent-events#usage
@Sse('sse') sse(): Observable<MessageEvent> { return interval(1000).pipe(map((_) => ({ data: { hello: 'world' } } as MessageEvent))); }
Expected behavior I use a sample from the NestJS source, the result will be as follows: https://github.com/nestjs/nest/tree/master/sample/28-sse
Additional context I use the default template setup. Perhaps there has been some configuration that caused the loss of the SSE data.
The text was updated successfully, but these errors were encountered:
Shchepotin
No branches or pull requests
Describe the bug
When I use Nest's SSE, it seems like the data part has disappeared.
To Reproduce
In the controller, I use a code sample from NestJS.
https://docs.nestjs.com/techniques/server-sent-events#usage
Expected behavior
I use a sample from the NestJS source, the result will be as follows:
https://github.com/nestjs/nest/tree/master/sample/28-sse
Additional context
I use the default template setup.
Perhaps there has been some configuration that caused the loss of the SSE data.
The text was updated successfully, but these errors were encountered: