By using middleware.ts instead of doing the dynamic content in the page itself, their content would be able to be cached
By using middleware.ts instead of doing the dynamic content in the page itself, their content would be able to be cached
Swapping my location with a VPN to Australia, the initial HTML takes 200-250ms to load
This makes me think they're SSRing on the edge as if you compare those numbers to
remix-on-the-edge.vercel.app/edge they're very similar
Swapping my location with a VPN to Australia, the initial HTML takes 200-250ms to load
This makes me think they're SSRing on the edge as if you compare those numbers to
remix-on-the-edge.vercel.app/edge they're very similar
They're SSRing each page load, you can tell this by how the age is 0 and the X-Vercel-Cache is MISS. Along with this, the site is hosted on Vercel meaning they're either using serverless functions or edge functions
They're SSRing each page load, you can tell this by how the age is 0 and the X-Vercel-Cache is MISS. Along with this, the site is hosted on Vercel meaning they're either using serverless functions or edge functions
A dive into how this works and why it's interesting (sub 50ms SSRing!)
A dive into how this works and why it's interesting (sub 50ms SSRing!)
A collection of documentation, components, and resources for building multi-tenant applications
Starting things off with a shadcn Vercel custom domain configurator block, a full stack copy paste component that just works
A collection of documentation, components, and resources for building multi-tenant applications
Starting things off with a shadcn Vercel custom domain configurator block, a full stack copy paste component that just works
It allows you to fetch data like normal, but it automatically batches & caches the calls
This allows you to fetch data from completely different locations in your app with the speed of one call
It allows you to fetch data like normal, but it automatically batches & caches the calls
This allows you to fetch data from completely different locations in your app with the speed of one call