1. [Frontend Side][Browser]사용자가 https://application.com/products 같은 URL에 접근합니다.브라우저는 HTML 문서(index.html) 를 받기 위해 요청을 보냅니다. 2. [Frontend Side][Node Server: Next.js]Next.js 서버(Node.js + V8)가 요청을 받습니다.Next.js는 해당 경로(/products)에 대응하는 페이지 컴포넌트를 확인합니다.Pages Router라면 getServerSideProps / getStaticProps 같은 특수 함수 export 여부를 확인합니다.App Router라면 page.tsx 컴포넌트가 Server Component인지, async 함수인지를 확인합니다.만약 데이터 패칭..