Skip to content

Server side rendering

Radix Primitives can be rendered on the server.

Overview

Server side rendering or SSR, is a technique used to render components to HTML on the server, as opposed to rendering them only on the client.

Static rendering is another similar approach. Instead it pre-renders pages to HTML at build time rather than on each request.

You should be able to use all of our primitives with both approaches, for example with Nuxt.js.

INFO

Some components' state might not rendered correctly in server-side, we are working on fixing it. If you encoutered any issue, feel free to open a ticket.