Skip to content Skip to sidebar Skip to footer

Heroku Push Failing With Build Errors

I have a node.js / reactjs / js applciation that I am trying to push to Heroku. I pushed using the proper commands git add . git commit -m 'message' git push Heroku master once I

Solution 1:

That error log shows that you are successfully installing grpc version 1.24.6, and failing to install grpc version 1.20.0. The problem is that grpc version 1.20.0 is not compatible with the version of Node that you are using. You will need to either use an older version of Node, or upgrade that dependency to a newer version of grpc.


Post a Comment for "Heroku Push Failing With Build Errors"