Could not resolve '___' from state 'home' - angular ui-router issue Could not resolve '___' from state 'home' - angular ui-router issue express express

Could not resolve '___' from state 'home' - angular ui-router issue


Your code is not following the tutorial exactly. Note that for child states to function, they must reference their parent state.

In the tutorial code:

.state('form.profile', {

In your code:

 .state('.profile', {

If you change your child states to reference the parent, they will function correctly. i.e.

.state('home.profile', {