Back to Next Js

Invalid Instant Configuration

errors/invalid-instant-configuration.mdx

16.2.5693 B
Original Source

Why This Message Occurred

You provided an invalid configuration for export const unstable_instant in a Layout or Page file.

Example of Correct Usage

Static Prefetching

tsx
export const unstable_instant = {
  prefetch: 'static',
}

Runtime Prefetching

tsx
export const unstable_instant = {
  prefetch: 'runtime',
  samples: [
    {
      cookies: [{ name: 'experiment', value: 'A' }],
      params: { slug: 'example' },
    },
  ],
}

Indicating that there is no instant UI

This does not disable prefetching.

tsx
export const unstable_instant = false