Skip to content
weballin

weballin DIGIWIKI

Hydration

Hydration is the process of activating interactive functions by connecting the browser's JavaScript to the static HTML generated on the server. It is the stage where the client-side React/Vue app comes to life after SSR/SSG.

weballin

The hydration process links the client's actions to the HTML sent by the server. Even if the screen is visible, if event processing is not ready or the initial results of the server and client are different, problems may arise during use.

Check when clicks become responsive and identify long-running JavaScript tasks. Reduce unnecessary execution and provide the features you need first, but don't assume that any one framework option guarantees a specific speed improvement.

References