animationsVercel
Never transition: all
MUST
MUST: Never transition: all. Explicitly list only the properties you intend to animate (typically opacity, transform)
Explicitly list only the properties you intend to animate
Bad
Good
Why it matters
Using transition: all is tempting but dangerous. It can accidentally animate properties you didn't intend to, causing performance issues and unexpected visual effects. Always explicitly list the properties you want to transition.
References