Failed to instantiate module [$injector:unpr] Unknown provider: $routeProvider
The ngRoute module is no longer part of the core angular.js file. If you are continuing to use $routeProvider then you will now need to include angular-route.js in your HTML: <script src=”https://stackoverflow.com/questions/18481863/angular.js”> <script src=”angular-route.js”> API Reference You also have to add ngRoute as a dependency for your application: var app = angular.module(‘MyApp’, [‘ngRoute’, …]); If … Read more