Which module is $sce in?
Why is there an error when trying to inject it when config routing:Uncaught Error: [$injector:modulerr]
angular.module('marketing-module',['ngRoute','d3','ngSanitize'])
.config(['$routeProvider','$sce',function($routeProvider,$sce){
$routeProvider
.when('/',{
...
})
...;
}]);
Only things like constant provider can be injected into config, but service cannot be injected
Solved it myself. Services cannot be introduced here, only service providers