diff --git a/server/src/socket.ts b/server/src/socket.ts index 3c32600e..4d5335a2 100644 --- a/server/src/socket.ts +++ b/server/src/socket.ts @@ -36,7 +36,8 @@ export default class Socket { constructor(server: HttpServer, database: Database) { const io = new Server(server, { cors: { origin: true }, - allowEIO3: true + allowEIO3: true, + maxHttpBufferSize: 100e6 }); io.sockets.on("connection", (socket: SocketIO) => {