Description
Hello there! First of all, thank you for the library. I appreciate your work.
I faced a strange issue in Chrome 120. My MQTT.js version is 5.3.4, QoS is 1, the broker is custom-made.
My WebSocket MQTT connection stops working after sending numerous packets in a single 200KB WS request in Chrome. The connection seems fine, and there are no errors. However, the server stops responding after receiving a large message. This issue is specific to Chrome; it works well in Firefox and Safari.
More details:
I call client.publish 500-1000 times synchronously in a loop to send numerous small buffered messages.
I see that WS send it in a one big message. It looks like:

The broker correctly handles approximately half of the messages from this WS request and then it's just stuck. Then I can publish new messages, but they are not received/processed by the broker and I don't get a PUBACK message

This might be a broker issue or even a Chrome issue; however, I have several questions about MQTT.js and hope the answers will be useful not only for me.
- Any advice how to avoid/fix the situation?
- Does mqtt.js have any options for splitting packages and not sending them in one WS message? Don't see it in the doc.
- Does mqtt.js have any constraints for the size of uploaded data or frequency of calling client.publish?
Thanks!