提交 c21300c3 编写于 作者: R Rachel Macfarlane

Return 404 if file is not found on local server

上级 5fd44ff6
......@@ -74,6 +74,8 @@ function sendFile(res: http.ServerResponse, filepath: string, contentType: strin
fs.readFile(filepath, (err, body) => {
if (err) {
console.error(err);
res.writeHead(404);
res.end();
} else {
res.writeHead(200, {
'Content-Length': body.length,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册