Getting the following error when I npm start:
at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=my-app.herokuapp.com request_id=ID a fwd=".,*," dyno= connect= service= status=503 bytes= protocol=https
I can see that this in fileserver.js held in samples-js-react/node_modules/selenium-webdriver/lib/test/:
var app = express();
app.get('/', sendIndex)
.get('/favicon.ico', function(req, res) {
res.writeHead(204);
res.end();
I've tried looking around the past day to see if I can find out what is causing it but nothing I try has resolved it.
Would appreciate some assistance as I am quite new to this and it might be a very simple fix but I can't see the wood for the trees