#nextjs
Read more stories on Hashnode
Articles with this tag
What are webhooks? A webhook is a way for an application to communicate with other external applications. Apps use webhooks to send automated messages...
Full-stack apps built with Next.js has three aspects of authentication: client-side authentication, server-side authentication, and API route...
What is on-demand ISR? On-demand ISR is a new feature added to the existing incremental static regeneration ( ISR ) in Next.js. Using ISR developers...
Incremental Static Regeneration ( ISR ) is relatively a new feature in Next.js. It is immensely helpful for a developer, and greatly improves the...
What is getStaticPaths? getStaticPaths is another special function in Next.js used in conjunction with getStaticProps for dynamic routes. In other...
What is pre-rendering? Next.js official documents say that Next.js, by default, pre-renders every page in the application. What does that really mean?...