In addition to another answer, here is another piece of information. Maybe someone else will find this helpful. I had a similar problem with custom view, but only in production. Everything was in dev mode. In production mode, nothing was displayed, and I had this javascript error that read "could not solve ... from state ...". It turns out that my javascript file (where the state is declared) was declared as follows in index.html
<script src="scripts/app/app.js"></script> <script src="scripts/app/app.constants.js"></script> ... <script src="scripts/app/pages/quizz/quizz.js"></script> <script src="scripts/app/pages/quizz/quizz.controller.js"></script>
I deliberately created a separation to make it easier to read. As soon as I moved it so that it was to the end, the problem disappeared. I think this is due to how the application is somehow packaged? I did not watch how he does it.
source share