Type something to search...

Blog

Next.js Server and Client Components

Next.js Server and Client Components

If you have written even a small amount of App Router code, you have already run into the split between Server Components and Client Components, whet

Dive Deeper
Next.js Setting up instrumentation

Next.js Setting up instrumentation

Every production Next.js app eventually hits the same wall: something breaks in a way you can't reproduce locally, and by the time you find out about

Dive Deeper
Next.js Building single-page applications (SPAs)

Next.js Building single-page applications (SPAs)

There's a common assumption that "Next.js" and "SPA" describe opposite philosophies — one server-first, one client-first — and that adopting Next.js

Dive Deeper
Next.js sitemap.xml

Next.js sitemap.xml

A sitemap is how you hand search engines a structured, authoritative list of every URL on your site worth crawling — rather than relying entirely on

Dive Deeper
Next.js src Folder

Next.js src Folder

By default, Next.js expects your app (or pages) directory to sit directly at your project root, alongside package.json, next.config.js, and e

Dive Deeper
Next.js Creating a static export

Next.js Creating a static export

Sometimes the right amount of server infrastructure for a project is none at all. A marketing site, a documentation portal, a project that needs to r

Dive Deeper