Good evening I am trying to use the Yeoman's Angular generator, and all good, but when I try to configure the route system with $locationProvider.hashPrefix('!')
the routes fail because the route system adds an extra # in the Path.
For example without the configuration is:
localhost: port / # / view
but when adding the prefix it becomes:
localhost: port / #! / # view
and that second # is added next to the name of my view which causes that the view is not found, if I manually delete that # the view is rendered normally.
What configuration do I lack? Greetings !!!