Next.JS: How to make ALL requests server-side
问题 I am building a Next.JS app that will be getting data from a Python API and an Postgres Database. Normally this would be simple, except requirements are such that I need to send all requests from the server-side, not the user's client. I have been working with and grokking getInitialProps, but I am not confident that it is the full solution that I need because of this line in the README : For the initial page load, getInitialProps will execute on the server only. getInitialProps will only be