I am going through the tutorials for Angular 2 and have been able to get a simple application up and running. Now, I am moving on to the routing and navigation part found h
Angular 2 by default uses HTML5 routing, you either have to map all server requests to index.html by adding the following to web.config
or implement the HashLocationStrategy, as described in angular docs here
provide(LocationStrategy, {useClass: HashLocationStrategy})