Answers about ssr
Questions and answers from the Croct community about ssr.
How do I keep marketing pages static while personalizing only a few routes?
Most of our site is static marketing content and I want it to stay fully static. Only a handful of routes actually need personalized slots, things like the…
Can I personalize entirely on the server and ship zero extra client JS?
My performance budget is strict and I enumerate everything that touches it. Constraints: no new client runtime on the critical path, no extra kilobytes in the…
Can I stream the page shell first and let the personalized slot fill in?
Next.js App Router. I want static-feeling TTFB. The page has one personalized slot below the fold and I would rather resolve it on the server than swap it in…
Running a full A/B test server-side from Laravel Blade, no SPA anywhere
Classic Laravel app, everything rendered in Blade, no SPA and no plans for one. I want to A/B test the pricing page hero. My question is whether the whole…
Does resolving personalization server-side add a TTFB penalty?
evaluating croct and the one thing holding me back is TTFB. right now most of our pages are basically static, we sit around 180ms TTFB from origin and i do…
Sanity content inside a Hydrogen storefront, personalizing without breaking the loaders
Hydrogen storefront, editorial content from Sanity, product data from Shopify. All data flows through loaders. Tried two Shopify CRO apps before this. Neither…
Can Nuxt SSR render personalized content without the flicker we had with our old tool?
hi, I am a nuxt dev from Argentina. We are replacing a client-side personalization tool because its anti-flicker snippet literally hid the whole page while…
Does server-side fetchContent add a TTFB penalty on my Next app?
i moved our hero personalization out of a client hook and into a server fetchContent call in the App Router. my assumption was that the extra server-side…
Personalizing the hero image, how do I keep LCP fast?
my hero image changes per audience, and the hero image is my LCP element on every landing page. i am worried that choosing it at request time means it swaps…
Sorry if this is basic, but how do I avoid the flash of default content when personalizing a Hydrogen page?
sorry if this is a really basic question, this is my first job and I got tasked with adding a personalized hero to our Hydrogen storefront. I built a…
Where should the personalized content fetch live in a Nuxt 3 app?
just added the Nuxt SDK and I am trying to figure out the right place for the content fetch. Does it belong in a plugin, in a composable, or inside…
Server component vs use client for personalization, how do I avoid a hydration mismatch?
I am deciding whether to resolve personalised content in a server component or in a client component with a hook. When I tried the client path I saw a brief…