Hello I have made app using angular, I have used ui-router for routing, I have minified the whole angular app using gulp-uglify.
After minifying app, my child route(nested route) of ui-router is not rendering view, main parent routes are working properly.
Can some one suggest me what to do here is my route sample:
.state('masterPage', {
url: "",
abstract: true,
templateUrl: 'src/app/Client/common/fullPage.html'
}).state('masterPage.userProfile.dashboard', {
url: "/dashboard",
templateUrl: "src/app/Client/userProfile/dashboard/index.html",
controller: "userDashboard",
controllerAs: 'vm'
})