Cannot read properties of null (reading ‘edgesOut’)エラーの解決法

投稿日:2023/06/11 最終更新日:2023/06/11

Cannot read properties of null (reading ‘edgesOut’)エラーの解決法

Reactの環境構築の際にこのエラーぶんが表示されました。

同じエラーが表示された場合に参考にしてみて下さい。

解決法

Reactでstyled-componentsをインストールした際にこのエラーが発生しました。

npm install styled-components
// npm ERR! Cannot read properties of null (reading 'edgesOut')が表示

調べてみると原因はいくつかあるようですが、最新版をインストールすることで解決は出来るようです。

npm install styled-components@latest

最新版の場合はバージョンアップに伴う仕様変更で使い勝手が変わってしまっている可能性がありますので、バージョンを指定したい場合は下記URL先のバージョン一覧を確認して下さい。

【公式】npm – styled-components

参考資料

https://stackoverflow-com.translate.goog/questions/70810819/npm-err-cannot-read-properties-of-null-reading-edgesout?_x_tr_sl=en&_x_tr_tl=ja&_x_tr_hl=ja&_x_tr_pto=sc


人気記事ランキング