본문 바로가기

웹프로그래밍/Javascript

[Next.js] Error: fetch for over 2MB of data can not be cached

반응형

Failed to set fetch cache https://xx.com/xx.jpg Error: fetch for over 2MB of data can not be cached

 

오류가 발생했을 때, 아래와 같이 조치하면 된다.

# 1
fecth('xx', { cache: 'no-store' });

# 2
export const dynamic = 'force-dynamic';

 

반응형