From 733215d96e8d9d3d949c90f63f20187999201364 Mon Sep 17 00:00:00 2001 From: nonoakij <45055030+nonoakij@users.noreply.github.com> Date: Thu, 23 May 2024 16:05:05 +0900 Subject: [PATCH] update --- docs/src/content/docs/guides/99-thanks.mdx | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 docs/src/content/docs/guides/99-thanks.mdx diff --git a/docs/src/content/docs/guides/99-thanks.mdx b/docs/src/content/docs/guides/99-thanks.mdx new file mode 100644 index 0000000..03cc1ca --- /dev/null +++ b/docs/src/content/docs/guides/99-thanks.mdx @@ -0,0 +1,38 @@ +--- +title: 99. 最後に +description: 99. 最後に +sidebar: + badge: + text: TODO + variant: caution +--- +// TODO: このページはまだ作成中です。 + +## cacheの話はしていません。なぜなら変わりそうだから。 + +[Breaking] Disable automatic fetch caching +- fetch cache と言ってるので request memoization 周りの話だと思っている。 +コンポーネントでがむしゃらにとってもいい感じに最適化されるぜ!という話がなくなることになる?かも? +https://github.com/vercel/next.js/pull/66004 +- [Breaking] disable client router cache for page segments +client側で持っているページのキャッシュがなくなるので、revalidate()してたところがなくせてシンプルになる場所があるかも。 +https://github.com/vercel/next.js/pull/66039 +- [Breaking] Disable automatic static generation for route handlers +ServeAction使っていることが多いので自分たちにはあまり影響ないかも +https://github.com/vercel/next.js/pull/65825 +- docs: Update Route Handlers docs for dynamic +https://github.com/vercel/next.js/pull/66010/files + +## 'use client'? 'use server'? 'use memo'? +'use ***'は境界です。 +'use client'はCCの境界です。 +'use server'はSAの境界です。RSCではない。 +'use memo'はReact compilerの境界です。 + +## Reactのcanaryはフレームワークレディです。 + +## route handler について + +## template について + +# Metadata について