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:
parent
fa1ec48549
commit
14a7b9f794
|
@ -4,7 +4,12 @@ module.exports = function(gulp, plugins, config) {
|
||||||
root: [__dirname+'/../../'+config.path],
|
root: [__dirname+'/../../'+config.path],
|
||||||
port: config.port,
|
port: config.port,
|
||||||
livereload: false,
|
livereload: false,
|
||||||
open: false
|
open: false,
|
||||||
|
middleware: function(connect, opt) {
|
||||||
|
return [
|
||||||
|
connect.favicon()
|
||||||
|
]
|
||||||
|
}
|
||||||
})();
|
})();
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue