/projects and I'm trying to fetch all the projects on the server, so all the projects can be available when the users arrives on the page.getServerSideProps or getStaticProps. On top of this, I know that tRPC configuration accepts a ssr: true | false property.ssr: true when I look at the network requests and I see my projects page request, it comes back as an HTML page, fully rendered, meaning. that it was fetched on the server, which is great.ssr: true I'm fetching my projects like this:getStaticProps or getServerSideProps, something like this (taken from tRPC documentation):ProjectsPage route.getStaticProps or getServerSideProps, should I configure my tRPC using the ssr boolean as well?