Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Adding MongoDB to your Node App on Heroku

Tarek El Hinaoui
PLUS
Tarek El Hinaoui
Courses Plus Student 13,220 Points

Are there any additional steps to take when using webpack with heroku?

i cant get the app (MEAN TODO app) to work on heroku although it works correctly locally.. Please HELP!

1 Answer

Michael Liendo
Michael Liendo
15,326 Points

After Heroku runs your scripts, Heroku runs a "postinstall" command. Add that key in your package.json. For example: "scripts": { "postinstall": "webpack --config ./webpack-prod.config.js --progress --colors", "start": "node server.js" }

Referenced SO topic: http://stackoverflow.com/questions/36223070/how-to-deploy-node-that-uses-webpack-to-heroku