react-code-dataset
/
next.js
/docs
/01-app
/03-api-reference
/05-config
/01-next-config-js
/serverComponentsHmrCache.mdx
| title: serverComponentsHmrCache | |
| description: Configure whether fetch responses in Server Components are cached across HMR refresh requests. | |
| version: experimental | |
| The experimental `serverComponentsHmrCache` option allows you to cache `fetch` responses in Server Components across Hot Module Replacement (HMR) refreshes in local development. This results in faster responses and reduced costs for billed API calls. | |
| By default, the HMR cache applies to all `fetch` requests, including those with the `cache: 'no-store'` option. This means uncached requests will not show fresh data between HMR refreshes. However, the cache will be cleared on navigation or full-page reloads. | |
| You can disable the HMR cache by setting `serverComponentsHmrCache` to `false` in your `next.config.js` file: | |
| ```ts filename="next.config.ts" switcher | |
| import type { NextConfig } from 'next' | |
| const nextConfig: NextConfig = { | |
| experimental: { | |
| serverComponentsHmrCache: false, // defaults to true | |
| }, | |
| } | |
| export default nextConfig | |
| ``` | |
| ```js filename="next.config.js" switcher | |
| /** @type {import('next').NextConfig} */ | |
| const nextConfig = { | |
| experimental: { | |
| serverComponentsHmrCache: false, // defaults to true | |
| }, | |
| } | |
| module.exports = nextConfig | |
| ``` | |
| > **Good to know:** For better observability, we recommend using the [`logging.fetches`](/docs/app/api-reference/config/next-config-js/logging) option which logs fetch cache hits and misses in the console during development. | |