Angular 6 Auth0 - global not defined

喜夏-厌秋 提交于 2019-12-22 03:49:20

问题


Ive upgraded my app from angular 5 to angular 6. i get the following error now.

Uncaught ReferenceError: global is not defined
at Object../node_modules/auth0-lock/lib/utils/cdn_utils.js (cdn_utils.js:13)

"angular2-jwt": "^0.2.3", "auth0-js": "^9.5.1", "auth0-lock": "^11.6.1",


回答1:


There was a similar issue in this angular thread:

On version 6 of Angular CLI we are removing the shim for global and other node built-ins. You can read more about why this change was made in #9827 (comment).

If you are using a library that assumes these globals are present, you can try manually shimming it inside your polyfills.ts file:

// Add global to window, assigning the value of window itself. (window as any).global = window;

Adding the line should resolve your error.



来源:https://stackoverflow.com/questions/50209019/angular-6-auth0-global-not-defined

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!