i am having problems when i try to do a deployment in heroku. The funny part is this was working three days ago. Also, is working fine in local machine.
The version
Had the same thing happening to me.
Node version not specified in package.json
Try and do what heroku suggest, define the node version you are using on the package.json
.
Get the version you are using for development:
node --version
Then put it on package.json
:
{ "name": "myapp",
"description": "a really cool app",
"version": "1.0.0",
"engines": {
"node": "8.9.4"
}
}