Enable SSR
Enabling Server-Side-Rendering (SSR) is a simple process, and this documentation will guide you through the necessary steps.
SSR Support Under the Hood
Enabling SSR in app.json
{
"routes": [
{
"path": "/",
"ssr": true,
"view": "features/my-feature/home.tsx"
},
// Additional routes...
]
}Important Considerations
Lazy Loading
Last updated