What problem does it solve? Developers migrating to or working with Turbopack in Next.js 16 face configuration changes, webpack loader incompatibilities, CSS ordering differences, and build failures that are hard to diagnose without deep bundler knowledge. ## Core Features & Use Cases - Configuration Guidance: Set up top-level turbopack config in next.config, including resolveAlias, resolveExtensions, and custom rules for loaders like @svgr/webpack. - Webpack Migration: Map common webpack loaders (css-loader, sass-loader, file-loader, raw-loader) to Turbopack built-ins or equivalents, and know when to fall back to webpack. - Build Diagnostics: Troubleshoot production build failures, oversized bundles, environment boundary errors, and profile HMR or builds with NEXT_TURBOPACK_TRACING. - Use Case: Your Next.js build fails after upgrading to Next.js 16 because experimental.turbopack moved and a custom webpack loader is unsupported. This Skill walks you through the config migration and loader replacement. ## Quick Start Ask the assistant to help migrate your next.config webpack customizations to Turbopack top-level config in Next.js 16.