I have made an Angular application that tests well in the developement environment. I have ported it to a sandbox server and run ng build
with associated parameters for base-href and environment. When I run the application in the sandbox environment, I see the following error:
This error does not appear in the development environment.
The trouble I face is that because of AOT compilation I am not able to identify the class that is causing the error.
What should I do to track down this error?
Why might it appear in the build file but not in the JIT files?
All help and suggestions are appreciated.