個人の備忘録です。
環境
- Node.js 16.10.0
- Next.js 11.1.3
- React.js v17.0.2
現象
yarn dev
でブラウザ表示をしたら以下のようなエラーが出ました。
原文
Unhandled Runtime Error.
ChunkLoadError: Loading chunk node_modules_next_dist_client_dev_noop_js failed.
(error: http://localhost:3000/_next/static/chunks/fallback/node_modules_next_dist_client_dev_noop_js.js)
解決策
筆者の環境の場合、以下で解決しました。
- /.next フォルダーを削除
-
yarn dev
で再度ブラウザ表示 - ブラウザキャッシュの削除 (Shift+F5 / Cmd+Shift+R)
文献