Internal API fetch with getServerSideProps? (Next.js)

But then I read in the Next.js documentation that you should not use fetch() to all an API route in getServerSideProps(). You want to use the logic that’s in your API route directly in getServerSideProps, rather than calling your internal API. That’s because getServerSideProps runs on the server just like the API routes (making a … Read more