While learning new technologies such as Nextjs, I have stumbled upon many different ways to render your web applications. Nextjs has two forms of prerendering your content, such being Static Site Generation(SSG) and Server Side Rendering(SSR). Resear...
pipecruz.hashnode.dev3 min read
Amazing learned a lot about how the page is rendered. :)
ISR is awesome! ISR with fallback:true is a great combination. You can basically prerender the popular paths during build, and generate the rest on demand. 🔥
Priti Solanki
Good read. I'm learning Next.js and will implement ISR in one of my sample app. Thank you.