浏览代码

serve notes/multiple index document as html (closes #470)

Hakim El Hattab 11 年之前
父节点
当前提交
8393efe8e9
共有 2 个文件被更改,包括 2 次插入0 次删除
  1. 1 0
      plugin/multiplex/index.js
  2. 1 0
      plugin/notes-server/index.js

+ 1 - 0
plugin/multiplex/index.js

@@ -30,6 +30,7 @@ app.configure(function() {
 });
 
 app.get("/", function(req, res) {
+	res.writeHead(200, {'Content-Type': 'text/html'})
 	fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
 });
 

+ 1 - 0
plugin/notes-server/index.js

@@ -30,6 +30,7 @@ app.configure(function() {
 });
 
 app.get("/", function(req, res) {
+	res.writeHead(200, {'Content-Type': 'text/html'})
 	fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
 });