#nextjs
Read more stories on Hashnode
Articles with this tag
Why is a sitemap important? Search engines use web crawlers, also called bots or spiders, to find and index web pages. These crawlers follow links...
Short answer You can't. Because you shouldn't. Long answer In Next.js, layouts stay the same when you switch routes, so they don't re-render. This...
What does it mean when a component "suspends"? ยท Introduction I'm really excited about this post. I've used Suspense in React but never really understood...
Introduction I had a bit of a tough time understanding gcTime in TanStack Query. So I decided to write this post for myself. Every query is...
Introduction Imagine you're building a blog application using TanStack Query. When a user is reading a blog post, you want to provide a snappy...
Introduction I never understood getStaticPaths in Next.js, so I decided to write this blog post as a way to understand it better. getStaticProps I...