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
We can have a declarative way of ensuring an element appears at-most-once in the <head>. We de-dupe based on the id attribute of an element. It could also be key but not sure if that interferes with React internals.
<Head><styleid="woot">{` /* this element will be appended at-most-once */ /* even if it appears in multiple components */ `}</style></Head>
The text was updated successfully, but these errors were encountered:
We can have a declarative way of ensuring an element appears at-most-once in the
<head>
. We de-dupe based on theid
attribute of an element. It could also bekey
but not sure if that interferes with React internals.The text was updated successfully, but these errors were encountered: