Build vs Runtime

Definition

Build time is when Next.js generates static pages before deployment. Runtime is when pages render dynamically during user requests.

Why Important

When It Happens

Real-World Example

Blog posts generated at build time, dashboard data rendered at runtime.

Interview Tip

Build time improves speed via static pages, runtime enables dynamic content.