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
From reading this part of the docs, I am thinking maybe this could be an intended behavior?
Whereas children of target are normally left alone, hydrate: true will cause any children to be removed. For that reason, the anchor option cannot be used alongside hydrate: true. https://svelte.dev/docs#Creating_a_component
I was looking into our web-app to improve LCP (Largest Contentful Paint), a performance metric from Lighthouse@6.
I noticed that LCP in our svelte app always happens our JS bundle finishes executing.
Using
DOMNodeInserted
andDOMNodeRemoved
events, I found that on hydration, all elements are removed and then re-inserted.Client-side render code
Options to svelte compiler for server bundle (using
[email protected]
for webpack)Options to svelte compiler for client bundle
Svelte version:
3.23.2
Is this an expected behavior?
From reading this part of the docs, I am thinking maybe this could be an intended behavior?
Update: Ah, seems like this is related to #4308 ?
The text was updated successfully, but these errors were encountered: