前提・実現したいこと
herokuへデプロイする際にエラーが出てしまし、デプロイすることができません。
発生している問題・エラーメッセージ
git push heroku masterで、
herokuへデプロイする際に Precompiling assets failed.と
エラーメッセージが表示されます。
該当のソースコード
remote: [4/4] Building fresh packages... remote: Done in 28.38s. remote: yarn install v1.22.4 remote: [1/4] Resolving packages... remote: [2/4] Fetching packages... remote: info fsevents@2.1.3: The platform "linux" is incompatible with this module. remote: info "fsevents@2.1.3" is an optional dependency and failed compatibility check. Excluding it from installation. remote: info fsevents@1.2.13: The platform "linux" is incompatible with this module. remote: info "fsevents@1.2.13" is an optional dependency and failed compatibility check. Excluding it from installation. remote: [3/4] Linking dependencies... remote: warning " > webpack-dev-server@3.11.0" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0". remote: warning "webpack-dev-server > webpack-dev-middleware@3.7.2" has unmet peer dependency "webpack@^4.0.0". remote: [4/4] Building fresh packages... remote: Done in 5.72s. remote: I, [2020-12-05T05:19:47.050795 #1487] INFO -- : Writing /tmp/build_5c6794c2/public/assets/application-2c09ae2022b0befe7685dd12d726194d0991c0adb7e5daa13403584873f94a44.css remote: I, [2020-12-05T05:19:47.051409 #1487] INFO -- : Writing /tmp/build_5c6794c2/public/assets/application-2c09ae2022b0befe7685dd12d726194d0991c0adb7e5daa13403584873f94a44.css.gz remote: Compiling... remote: Compilation failed: remote: ! remote: ! Precompiling assets failed.
試したこと
config/enviroments/prodution.rb
ruby
1config.assets.compile = true
元々falseだったところをtrueに変更し
コンパイルできるか試しましたがうまくいきませんでした。
補足情報(FW/ツールのバージョンなど)
コードを書いてる環境は
ruby '2.6.5'
rails 6
です。
あなたの回答
tips
プレビュー