최상위 10_Wiki/Topic_*였던 4개 카테고리 폴더를 10_Wiki/Topics/Topic_* 로 재배치.
콘텐츠 변경 없음(순수 폴더 이동) — Topics/ 하위 나머지 폴더는 이미 지난 커밋에서
전부 정리된 상태(잔존 항목은 에이전트 운영 상태 및 사용자가 보존을 요청한
업데이트0615/무제 3.canvas 뿐).
"매 이커머스 와 뉴스 는 매 LCP 와 매 traffic spike 가 매 매출 / engagement 에 매 직결". 매 1 초 LCP 개선 = Amazon $1B/yr (고전), Pinterest +15% conversion. 매 2026 stack — Next.js 15 + ISR + Edge / CDN + Image optim — 가 매 default playbook.
매 핵심
매 두 도메인 의 차이
이커머스: 매 product page 의 매 LCP (image), 매 PDP 의 매 INP (variant select), 매 cart 의 매 freshness.
뉴스: 매 article 의 매 LCP (cover image / headline), 매 publishing speed (ISR ≤ 60s), 매 ad / tracker 부하.
Edge caching: Vercel / Cloudflare / Fastly 의 매 stale-while-revalidate.
Image CDN: Cloudinary / imgix / Next Image — 매 AVIF + responsive.
Streaming SSR: RSC + Suspense → 매 TTFB 개선.
Third-party tax 최소화: GTM / pixel — 매 Partytown 또는 server-side tracking.
매 응용
Shopify Hydrogen / Next Commerce.
NYT, WaPo, Bloomberg 식 article.
Medium / Substack 식 long-tail.
💻 패턴
ISR (Next 15)
// app/products/[id]/page.tsx
exportconstrevalidate=60;// 매 60초 ISR
exportdefaultasyncfunctionProduct({params}){constproduct=awaitgetProduct(params.id);return<ProductViewproduct={product}/>;}exportasyncfunctiongenerateStaticParams() {consttop=awaitgetTopProducts(1000);// 매 top 1000 prebuild
returntop.map(p=>({id: p.id}));}
exportdefaultfunctionArticlePage({params}){return(<><ArticleHeaderid={params.id}/>{/* 매 즉시 stream */}<Suspensefallback={<CommentsSkeleton/>}><Commentsid={params.id}/>{/* 매 below-fold */}</Suspense></>);}