When we\'re building our Angular SPA for localhost it works perfectly.
On our dev environment, this error creeps into the DevTool console and breaks everything: ERRO
This seems more related to Angular than Auth0 but out of curiosity have you defined digest in your component?
digest
If not, you can do that as: digest: {}; at the component level.
digest: {};
I hope this helps you on your quest!