Chuyển đến nội dung chính

Một bài viết được tag với "nextjs"

Xem tất cả Tags

ISR: The Best of Both Worlds in Rendering

· 1 phút đọc
Evan Carter
Evan Carter
Senior frontend

TLDR:

Incremental Static Regeneration

ISR gives you static speed with controlled freshness: pre-rendered pages plus revalidate windows and on-demand invalidation. This guide covers how ISR works in Next.js, how to configure it in the Pages and App Router, when to use time-based vs tag-based revalidation, and how Feature-Sliced Design keeps ISR-driven codebases modular and maintainable.

Server-Side Rendering (SSR): An Architect's Guide

· 1 phút đọc
Evan Carter
Evan Carter
Senior frontend

TLDR:

SSR Frontend Architecture

A practical architect’s guide to server side rendering: how SSR improves SEO and perceived performance, how it compares to CSR and SSG, and how to design hydration, caching, and server/client boundaries in Next.js, Nuxt.js, and Remix using Feature-Sliced Design.