Perhaps the title is a bit unclear.
I am currently working on two Angular apps nested within each other. Each has its own router created using `ui-router`. If I call a state that is not recognized by the main router, I would like it to search for this state in the sub-app router to retrieve the corresponding `templateUrl` and `url` for that state.
One solution I considered was creating a service with a parser that could extract the necessary data from the file. However, I believe there may be a better option available. That's why I am curious to know if there is a specific function or method in `ui-router` that can help me achieve this. Based on what I have read in the `ui-router` documentation, it does not seem so :/
Please feel free to request more details or suggest another solution that aligns with my objective :)