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
You can fix the error by implementing hash location strategy:
To enable HashLocationStrategy it's like this:
RouterModule.forRoot(routes, {useHash: true})
URL can contain some data prepended with a # character.
The # part of the URL is called the hash fragment. It’s never sent to the server,
example: http://example.com/#/clients