I'm not sure what I'm doing wrong here... Here's my file structure...
/app
/scripts/components/post
/post.html
/PostCtrl.js
Here's my express use
var publicDir = path.join(__dirname, 'app'));
app.use(express.static(publicDir));
app.use(app.router);
I have confirmed that publicDir is the directory I want to be serving up.
I'm not certain what is wrong with my setup. Am I using this incorrectly?