tRPC with ssr: true - what's going on?
I've looked far and wide, and haven't figured this out.
putting
ssr: true uses getInitialProps, instead of getServersideProps, which can result in faster page loads since we're not waiting on the server. However, getServersideProps is now the recommended solution.putting
ssr: false feels wrong as it seems like this means I won't get ssr. I imagine this is wrong? Is the ssr that trpc is referring to different from the ssr we do want as described in the next js docs?