Blog

Your dream job? Lets Git IT.
Interactive technical interview preparation platform designed for modern developers.

XGitHub

Platform

  • Categories

Resources

  • Blog
  • About the app
  • FAQ
  • Feedback

Legal

  • Privacy Policy
  • Terms of Service

© 2025 LetsGit.IT. All rights reserved.

LetsGit.IT/Categories/Next.js
Next.jshard

Name two practical ways to improve Next.js performance.

Tags
#performance#bundling#next-image
Back to categoryPractice quiz

Answer

Keep as much as possible in Server Components (less JS), and split heavy client code with dynamic imports. Also use `next/image` for optimized images and avoid huge providers on the client.

Related questions

Next.js
`next/link` prefetching: what does it do and how can you control it?
#nextjs#link#prefetch
Next.js
What does `next/font` solve and how does it reduce layout shift (CLS)?
#nextjs#fonts#performance
Next.js
What does `next/image` do for you (and why use it)?
#nextjs#images#performance
Next.js
What is code splitting and how does `dynamic()` help in Next.js?
#code-splitting#dynamic-import#performance
Next.js
Edge runtime vs Node.js runtime in Next.js — when choose which?
#edge#runtime#nodejs
MongoDB
Text indexes: when would you use them and what’s a limitation?
#mongo#text-index#search