I am getting this error after deploying the app... Anyone know why this could be happening?
This is what I am getting in the console: Failed to load resource: the server responded with a status of 503 (Service Unavailable)
I am getting this error after deploying the app... Anyone know why this could be happening?
This is what I am getting in the console: Failed to load resource: the server responded with a status of 503 (Service Unavailable)
Thanks to the suggestion from Janith to check Heroku logs, I figured out the issue!
I previously set the routes on an app.js file when it needed to be pointing to my index.js file. Also, I needed to set nodemailer on a different file. After setting the routes in my index.js file and setting nodemailer on a separate file the issue was fixed.
Hope this helps anyone running to the same silly issue!
Thanks again @janith!