@/all if you missed the last news about gulp-angular
https://github.com/Swiip/generator-gulp-angular/releases/tag/v1.1.1
I recommend you to switch on FountainJS.
We just achieve a full test coverage
Hey guys, when I run the local serve command everything works fine. But when I build, my two layout routes files are returning 404:
This is what calls them in my route file:
$stateProvider
.state('dashboard', {
// abstract: true,
views: {
layout: {
templateUrl: 'app/layouts/dashboard.html',
}
},
data: {
authorizedRoles: true
}
})
.state('full', {
// abstract: true,
views: {
layout: {
templateUrl: 'app/layouts/fullpage.html',
}
}
})
any ideas?