What problem does it solve? Slow dev server startup, sluggish hot module replacement, and confusion about when to use Turbopack versus webpack make Next.js development frustrating. This Skill provides guidance on Next.js 16+ bundler behavior so you can diagnose slow dev performance and choose the right bundler configuration. ## Core Features & Use Cases - Bundler Selection Guidance: Explains when to use Turbopack (default dev bundler) versus webpack (legacy fallback via --webpack flag) and how production builds differ by Next.js version. - Dev Performance Diagnosis: Covers file-system caching under .next, incremental bundling, and how restarts reuse previous work for faster cold starts. - Bundle Analysis: Describes the experimental Bundle Analyzer in Next.js 16.1+ for inspecting output and trimming heavy dependencies. - Use Case: Your Next.js app's dev server takes minutes to start. Use this Skill to confirm Turbopack is active, verify the cache isn't being cleared, and identify large dependencies with the Bundle Analyzer. ## Quick Start Ask the AI to explain why my Next.js dev server is slow and whether I should use Turbopack or webpack.