Skip to content
Snippets Groups Projects
Unverified Commit d65efb0d authored by Florian Raith's avatar Florian Raith Committed by GitHub
Browse files

Change websocket size (#41)

parent 7e2b04b1
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,10 @@ const WEB_SOCKET_OPTIONS =
? {}
: { cors: { origin: process.env.FRONTEND_URL } };
@WebSocketGateway(WEB_SOCKET_OPTIONS)
@WebSocketGateway({
...WEB_SOCKET_OPTIONS,
maxHttpBufferSize: 1e8,
})
export class ChannelGateway implements OnGatewayConnection {
@WebSocketServer()
public server: Server;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment