Hey folks, I thought I'd jump in. For my applications I use almost entirely client-side requests and use server-side requests only when needed (like when you're implementing multi-tenancy and need to allow an admin to send invites off). The reason for doing this is I want to get close to not using a server for my front-end application so that the development lifecycle is quite fast. All I need to do in most cases to get "server-side" functionality is write an edge function OR a postgres function (better because it can use postgres' security without extra code) and call that from the front-end.