Subdirectories not being served with express.static in heroku
I'm seeing some really odd behavior where some of my files are correctly being returned by my express/node server (using express.static() ), but not files within subdirectories. The frustrating thing is that it works fine using node or foreman locally, it just won't work on heroku. This gist has the main files at play here, and my app structure looks like this: -app - index.html - img/ - base.png - sub/ - sub.png - scripts - base.js - sub/ - sub.js - css - base.css - sub/ - sub.css - server - app.js The index.html, and base.* files all load fine, it's just the sub.* files that 404. Seems