Blog

Next.js prefetch
A <Link> component expresses intent — "prefetch this destination, and how eagerly." But the destination itself has no way to know, ahead of time, w
Dive Deeper
Next.js runtime
If you've read older Next.js material, you likely came across a real, meaningful choice here: render this segment on Node.js, or on the leaner, faste
Dive Deeper
Next.js Script Component
If you've read a guide on optimizing third-party scripts in Next.js, you already know the pitch: next/script gives you a strategy prop instead of
Dive Deeper
Next.js Self-hosting your application
Vercel built Next.js, and Vercel's platform is tuned to make every Next.js feature work with zero configuration. That convenience quietly shapes how
Dive Deeper
Next.js Server Actions and Mutations
The "Mutating Data" article earlier in this series covers how to write and call a Server Action — the tutorial-level mechanics. This one is the deepe
Dive Deeper
Next.js The Server and Client Boundary
The "Server and Client Components" article earlier in this series covers the basics — how to decide which one a piece of UI should be, the everyday c
Dive Deeper