I have some client code which is growing ever bigger in size… Is there a maximum which I may hit at some point and should push more to the server? Are there upper limits as well for server code functions?
I don’t think there is an upper limit. But the more code you add, the slower your app loads initally. So it’s always a good idea to limit your codebase. Try to reuse functions and components as much as you can
On the server side also, the amount of code shouldn’t have any noticeable impact. But any important logic should be moved there anyway