express.static没有使用heroku

时间:2016-05-10 20:33:08

标签: node.js express heroku static-files

我有这段代码:

app.use(express.static(__dirname + '/assets'));

app.get('/', function(req, res){

    res.sendFile(path.join( __dirname, 'assets', 'index.html' ));
});

但我仍然遇到这些错误: enter image description here

知道我做错了什么? (当然文件存在于目录中)

提前致谢!

1 个答案:

答案 0 :(得分:1)

如果您有一个名为./assets/css/bootstrap.css的文件并且配置express.static以便./assets/是根目录,则该网址应为/css/bootstrap.css