afaik, we can't send files to a server function. it's only strings that can be sent over there. but I really need to work with some files sent by users in a server function. so I'm wondering if I can convert the files to base64 string and then send it? well, in that case, the payload size will be big enough. that's why I'm wondering, what's the maximum payload size for server functions. I can't find any related info in the docs
TL;DR
Developers are unable to send files to a server function, only strings. To work with files, they can convert them to base64 strings before sending. The maximum payload size for server functions is not specified in the documentation.