Notez qu'il apparaîtra à chaque fois avec les premiers Rails après la construction de l'environnement C'est une condition préalable à la création d'un environnement de rails à l'aide de bundle.
Quand je fais $ rails s
, j'obtiens l'erreur suivante ...
$ bundle exec rails s
=> Booting Puma
=> Rails 6.0.3.2 application starting in development
=> Run `rails server --help` for more startup options
Exiting
Traceback (most recent call last)
.....
.....
Webpacker configuration file not found /Users/hoge_app/config/webpacker.yml.
Please run rails webpacker:install
Error: No such file or directory @ rb_sysopen - /Users/hoge_app/config/webpacker.yml (RuntimeError)
Le texte d'erreur dit «Veuillez exécuter rails webpacker: install», alors lancez-le!
$ bundle exec rails webpacker:install
C'est acceptable!
Recommended Posts