What problem does it solve?
React and Next.js projects frequently face performance regressions due to inefficient data fetching, bloated bundles, and suboptimal rendering patterns. This skill consolidates Vercel's performance guidelines into a single, reusable playbook that teams can apply during development, reviews, and refactoring.
Core Features & Use Cases
- Comprehensive rule set spanning eight priority categories (Eliminating Waterfalls, Bundle Size Optimization, Server-Side Performance, Client-Side Data Fetching, Re-render Optimization, Rendering Performance, JavaScript Performance, Advanced Patterns).
- Guided examples and patterns to drive automated refactoring, code generation, and performance-conscious decisions.
- Use Case: When optimizing a React/Next.js app with slow data loading or large dependencies, apply these rules to reduce waterfalls, trim bundles, and improve first paint metrics.
Quick Start
Inspect components and pages for waterfalls and unnecessary data fetches.
Apply conditional/delayed loading, Suspense, and per-request caching as appropriate.
Generate targeted changes following the eight category priorities to improve TTI and LCP.