While customizing the ngx-admin template, I attempted to incorporate a new module into the app module and added its route in app-routing.module.ts. However, upon trying to open it, the module seems to be stuck at loading without any errors appearing in the console. I'm puzzled as to what could be causing this issue.
Note that I have placed the SignModule outside of pages, not inside.
This is an excerpt from app-routing.module.ts:
[Insert updated code snippet here]
The newly added module is called SignModule.
Here's the content of sign.module.ts file:
[Insert updated code snippet here]
And for sign-routing.module.ts:
[Insert updated code snippet here]