I need to send an audio to the meteor server, but I keep getting a 413 (Request Entity Too Large)
I'm using a FileReader to read a file as a binary string and then send it to the server
const reader = new FileReader();
reader.readAsBinaryString(file);
reader.onload = function(fileLoadEvent) {
Meteor.call('Action.upload',
{
file,
data: reader.result,
lang
},
(err,res) => {
console.log(err, res);
});
};