[angular] Angular 2.0 router not working on reloading the browser

Simon's answer was correct for me. I added this code:

app.get('*', function(req, res, next) {
  res.sendfile("dist/index.html");
});