What problem does it solve? Developers working with Next.js 16+ often face slow dev startup, confusing bundler choices between Turbopack and webpack, and uncertainty about production build behavior. This Skill provides clear guidance on when to use Turbopack versus webpack and how to diagnose bundling performance issues. ## Core Features & Use Cases - Bundler Selection Guidance: Explains when to use Turbopack (default dev bundler) versus webpack (legacy fallback via --webpack flag). - Performance Diagnostics: Covers file-system caching behavior, cold start improvements, and HMR speed for large applications. - Bundle Analysis: Describes the experimental Bundle Analyzer in Next.js 16.1+ for inspecting output and trimming heavy dependencies. - Use Case: A developer notices slow dev server restarts on a large Next.js app. This Skill helps confirm Turbopack is active, verify the .next cache is intact, and decide whether a webpack fallback is needed for a legacy plugin. ## Quick Start Ask the assistant to help you decide between Turbopack and webpack for your Next.js 16 project or to diagnose slow dev startup.