🦁

【自分用メモ】npm run devでCould not freeze ~が出たとき

2024/06/18に公開

ローカルでnpm run devしたときにめちゃくちゃ下のようなエラーが出た場合

ERROR  [hardsource:dca56a80] Could not freeze {ファイルのパス}: Cannot read properties of undefined (reading 'hash')

結論
ひとまずエラーが出ているHardSourceで作成されたキャッシュファイルを削除することで解決できます。

$ rm -rf node_modules/.cache/hard-source/

Discussion