前提・実現したいこと
railsを使って作ったアプリケーションをherokuでデプロイ
ここに質問の内容を詳しく書いてください。
railsでwebアプリケーションを作っていてherokuでデプロイしたところ以下のようなエラーが発生したので解決したい。
発生している問題・エラーメッセージ
railsでwebアプリケーションを作っていてherokuでデプロイしたところ以下のようなエラーが発生した。
エラーメッセージ
.
.
.
remote: Bundle complete! 22 Gemfile dependencies, 81 gems now installed.
remote: Gems in the groups development and test were not installed.
remote: Bundled gems are installed into ./vendor/bundle
remote: Post-install message from i18n:
remote:
remote: HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
remote: But that may break your application.
remote:
remote: If you are upgrading your Rails application from an older version of Rails:
remote:
remote: Please check your Rails app for 'config.i18n.fallbacks = true'.
remote: If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
remote: 'config.i18n.fallbacks = [I18n.default_locale]'.
remote: If not, fallbacks will be broken in your app by I18n 1.1.x.
remote:
remote: If you are starting a NEW Rails application, you can ignore this notice.
remote:
remote: For more info see:
remote: https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
remote:
remote: Bundle completed (181.42s)
remote: Cleaning up the bundler cache.
remote: -----> Installing node-v12.16.2-linux-x64
remote: -----> Installing yarn-v1.22.4
remote: -----> Detecting rake tasks
remote: -----> Preparing app for Rails asset pipeline
remote: Running: rake assets:precompile
remote: yarn install v1.22.4
remote: [1/4] Resolving packages...
remote: [2/4] Fetching packages...
remote: error An unexpected error occurred: "https://registry.yarnpkg.com/cosmiconfig/-/cosmi-5.2.1.tgz: Request failed "404 Not Found"".
remote: info If you think this is a bug, please open a bug report with the information provided in "/tmp/build_b27cb7de/yarn-error.log".
remote: info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
remote:
remote: !
remote: ! Precompiling assets failed.
remote: !
remote: ! Push rejected, failed to compile Ruby app.
remote:
remote: ! Push failed
remote: Verifying deploy...
remote:
remote: ! Push rejected to guchikomi1.
remote:
To https://git.heroku.com/guchikomi1.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/guchikomi1.git'
該当のソースコード
Ruby ### 試したこと config.i18n.fallbacks = true を config.i18n.fallbacks = [I18n.default_locale] のように変更して再度デプロイしても同じエラーでpushできません。 ### 補足情報(FW/ツールのバージョンなど) ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー