Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Apply 62 React and Next.js performance optimization rules from Vercel Engineering
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/_template.md
1---2title: Rule Title Here3impact: MEDIUM4impactDescription: Optional description of impact (e.g., "20-50% improvement")5tags: tag1, tag26---78## Rule Title Here910**Impact: MEDIUM (optional impact description)**1112Brief explanation of the rule and why it matters. This should be clear and concise, explaining the performance implications.1314**Incorrect (description of what's wrong):**1516```typescript17// Bad code example here18const bad = example()19```2021**Correct (description of what's right):**2223```typescript24// Good code example here25const good = example()26```2728Reference: [Link to documentation or resource](https://example.com)29