-
Title, basically. I was wondering if Svelte 5 offers performance improvements even without the runes? |
Beta Was this translation helpful? Give feedback.
Answered by
Ocean-OS
Dec 28, 2024
Replies: 1 comment
-
Yes, because even in legacy mode, Svelte 5 uses signals under the hood. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Guandor
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, because even in legacy mode, Svelte 5 uses signals under the hood.
Svelte compiles
let x = 0
tolet x = $.mutable_state(0)
(assumingx
is used in a reactive way), which is a signal.