You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perf: Make page static info use Atom instead of String (#75596)
### What?
Use `swc_atoms::Atom` instead of `String` in `next-swc`.
### Why?
`Atom` does not allocate if another instance has the same value, meaning that `clone()` is a single atomic operation. But `String` allocates regardless of any other occurrence.
0 commit comments