我有一个现有的 rails 5.0.2 应用程序,并且想在一些页面中添加一个 React(带有 Redux)应用程序
找到了 webpacker gem,但是在为 React 设置 webpacker 安装时遇到了这个问题:
$ bundle exec rails webpacker:install:react
Configuration config/webpacker.yml file not found.
Make sure webpacker:install is run successfully before running dependent tasks
这是我在 Gemfile 中安装 gem 的方式:
gem 'webpacker', '~> 3.2'
这就是我调用安装的方式:
$ bundle exec rails webpacker:install:react
这是我得到的回应:
Configuration config/webpacker.yml file not found.
Make sure webpacker:install is run successfully before running dependent tasks
Gemfile 片段:
ruby '2.3.4'
gem 'rails', '~> 5.0.2'
gem 'webpacker', '~> 3.2'