joeeames / MEANAppsFiles

Repository for my MEAN course on Pluralsight
117 stars 105 forks source link

Angular Changes -$locationProvider.html5Mode({enabled:true, requireBase:true}); #13

Closed danieldram closed 9 years ago

danieldram commented 9 years ago

in Angular 1.3+, to have pretty urls you will also need to replace:

$locationProvider.html5Mode('true');

with

$locationProvider.html5Mode({enabled:true, requireBase:true});
joeeames commented 9 years ago

added to the readme. Will be fixed in the course in the future.