solved MIME type warnings
This commit is contained in:
parent
93be3718c5
commit
84ca690684
1 changed files with 4 additions and 1 deletions
|
@ -90,7 +90,10 @@ var server = http.createServer(option, function(req, res){
|
|||
res.writeHead(404, {'Content-Type': 'text/html'});
|
||||
return res.end("404 Not Found");
|
||||
}
|
||||
res.writeHead(200, {'Content-Type': 'text/html'});
|
||||
if(filename.endsWith('.js'))
|
||||
res.writeHead(200, {'Content-Type': 'text/javascript'});
|
||||
else
|
||||
res.writeHead(200, {'Content-Type': 'text/html'});
|
||||
res.write(data);
|
||||
return res.end();
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue