chore: 進一步解除傳輸最大限制

This commit is contained in:
CrescentLeaf
2025-09-24 21:33:30 +08:00
parent d5fbc490ea
commit b741cbf9ba

View File

@@ -39,7 +39,7 @@ const httpServer: HttpServerLike = (
http.createServer(app)
)
const io = new SocketIo.Server(httpServer, {
maxHttpBufferSize: 1e9,
maxHttpBufferSize: 1e114514,
})
ApiManager.initServer(httpServer, io)