Closed
Description
Gruntfile.js
// opens browser on initial server start
nodemon.on('config:update', function () {
setTimeout(function () {
require('open')('http://localhost:=8080/debug?port=5858');
}, 500);
});
karma.conf.js
// web server port
port: 8080,
Especially since 8080 is often used by other software, e.g. local proxy.