railsチュートリアルに従って、scaffoldのページ作成後「
「Webpacker::Manifest::MissingEntryError」
というエラーがでた。
そこで、
1 |
$ rails webpacker:install |
を実行したところ、最終的には成功している様に見えましたが、以下のエラーがでていました。
1 2 |
error sass@1.70.0: The engine "node" is incompatible with this module. Expected version ">=14.0.0". Got "12.22.9" error Found incompatible module. |
どうやら、バージョンが古いといわれていますので、以下の公式ページにしたが、nodejsのバージョンを上げました。
distributions/README.md at master · nodesource/distributions · GitHub
1 2 |
curl -fsSL https://deb.nodesource.com/setup_21.x | sudo -E bash - &&\ sudo apt-get install -y nodejs |
これで、nodejsのバージョンが上がった後にサイドチャレンジしたらうまく行きました。