我有一个休息服务器和客户端的快速设置。其余部分工作正常。但是,当应用加载index.html时,它无法找到index.html中引用的(相对路径)静态文件
控制台上的错误是:
--boundary
app.js是:
Warning: Unexpected block undefined on line undefined + of undefined.
This warning will be an error in v2.0.0
GET /css/bootstrap.css 404 912.960 ms - 833
答案 0 :(得分:0)
似乎我的应用程序错过了这个:
app.use( '/', express.static(__dirname + '/public'));
所以我换了:
app.use( express.static('/public'));
有了它,现在它起作用了。感谢@Konga raju的回答:failed to load static files express js。 我没有做@Fausts的建议,因为这是在快递公司生成的文件中。