0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Railsのエラー Webpacker configuration file not found

Posted at

またまたエラーが出たのでその備忘録を
どうも色々更新されて面倒が増えたようです。

起動からのエラー

いつも通りに起動しようとしたら

rails s

こんなエラーが

~ Webpacker configuration file not found ~

wevpacker

調べて見ると
node.jsのモジュールの1つ
CSS、JavaScript、画像などを1つのファイルとしてまとめるためのモジュールバンドラーだとのこと
Rails5.1から実装されたそうです。

yarn

webpackerを使うためのツール
Facebookが開発したnode.jsのパッケージマネージャ

インストールはこちら

brew install yarn

エラー対応

調べて見た結果
下記のコードをターミナルで打ち込んで解決しました。

rails webpacker:install
# ここでインストール使用としたらnode.jsがないとのこと

brew install node
# nodeのインストール

brew install yarn
# webpackerのインストールに必要とのこと

rails webpacker:install
# ようやくインストールができました。

これでようやくrailsの起動ができました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?