I was using the PUSH state in my site for SEO,
When i use PUSH state, It shows these Error which i have displayed below.
Uncaught Error: [$injector:modulerr] Failed to instantiate module projectApp due to:
Here is my AngularJS Code
<script>
var countryApp = angular.module('projectApp', ['ngSanitize']);
countryApp.config(['$location',function ($location) {
$location.html5Mode(true);
}]);
</script>