[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';
웹프로그래밍/Javascript
2024. 2. 25. 15:14
