I'm currently experiencing some minor problems with serving static files through expressJs.
My directory structure is as following:
In my index.html
file i have prefixed all my assets with a leading slash.
My static setup is as following:
app.use(express.static(path.resolve(__dirname + '../' + 'public')));
But for some reason my static files are not getting served.
I was thinking that this is a crossdomain call or something...
I'm currently using cloud9 IDE, might this have to do with it somehow?
question from:
https://stackoverflow.com/questions/20322480/express-js-static-relative-parent-directory 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…