Email or username:

Password:

Forgot your password?
4 posts total
matthew

I guess we’re past the point where my bias towards @astro is “mild”

Tim Severien

@astro On a more serious note: I really appreciate how versatile @astro is. Where other frameworks set you up to build a single-page app with server-side rendering, Astro is composable. It offers you the tools to build a static site, single-page app, and anything in between. Consequently, it enables you to tailor to user needs with little impact on your code.

matthew

@matthew how is that different from what they call Incremental Static Regeneration at NextJS?

nextjs.org/docs/pages/building

Part of my problem is that I don't want to wait until a page is visited to regenerate it (I assume that if I just invalidate the page then this is what would happen). I suppose that what I could do is just hit the page url after invalidating to trigger a rebuild. But it feels hacky, not using the tool (SSR+CDN cache) for the purpose it was made for.

@matthew how is that different from what they call Incremental Static Regeneration at NextJS?

nextjs.org/docs/pages/building

Part of my problem is that I don't want to wait until a page is visited to regenerate it (I assume that if I just invalidate the page then this is what would happen). I suppose that what I could do is just hit the page url after invalidating to trigger a rebuild. But it feels hacky, not using the tool (SSR+CDN...

Go Up