fix(jsserve): serve empty favicon to prevent errors in benchmarks

Background: our benchmarks check whether there were errors
in the browser log after they executed.
This commit is contained in:
Tobias Bosch 2015-04-21 10:09:58 -07:00
parent fa1ec48549
commit 14a7b9f794
1 changed files with 6 additions and 1 deletions

View File

@ -4,7 +4,12 @@ module.exports = function(gulp, plugins, config) {
root: [__dirname+'/../../'+config.path],
port: config.port,
livereload: false,
open: false
open: false,
middleware: function(connect, opt) {
return [
connect.favicon()
]
}
})();
};
};