Abhishek Holaniabhishekh007.hashnode.dev·Apr 25, 2023Data Fetching in NextJSIntroduction In today's digital world, websites, and web applications have become essential to our lives. With the increasing demand for fast and responsive web experiences, developers are always exploring new ways to enhance website performance. Nex...4 likes·46 readsdata fetching
Durgesh Upadhyayudurgesh6.hashnode.dev·Mar 24, 2023getServerSideProps in NextJSWhat is getServerSideProps? getServerSideProps is a function that runs on the server before a page is rendered. It is used to fetch data from an external source and pass it down to the page as props. This allows you to pre-render pages with dynamic d...36 readsNext.js