generator-angular
generator-angular copied to clipboard
Grunt build does not properly attaches directive templateUrl
I have templateUrl in my directives and it is put up in the template folder just like there are views kept inside views folder but when I run grunt build, it somehow misses to take care of the templateUrl mentioned in the directives. If anyone has got any solution to it, then please let me know. Thanks!
This issue is a same as https://github.com/yeoman/generator-angular/issues/1380 the solution provided worked fine for me.
Did downgrading worked for you?
It's a problem with angular 1.6 but before downgrading I tried this
angular
.module('webApp', ['ngAnimate', 'ngAria', 'ngCookies', 'ngMessages', 'ngResource', 'ngRoute', 'ngSanitize', 'ngTouch'])
.config(function ($routeProvider, $locationProvider) {
$routeProvider
.when('/blog', {
templateUrl: 'views/blog.html',
controller: 'BlogCtrl',
controllerAs: 'blog'
})
.otherwise({
redirectTo: '/'
});
$locationProvider.hashPrefix('');
});
given by Playntek in #1380 and it worked fine,so no need to downgrade.