You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 23, 2019. It is now read-only.
When I run the full-example, in production mode, I get Uncaught ReferenceError: global is not defined in the browser. I saw recent discussion around this and it looks like global.foo was added to footer.js as a test case and that mendel added a default shim for global with c97a12e. But maybe I'm seeing that wrong and need to add it manually somewhere?
The text was updated successfully, but these errors were encountered:
Thank you very much for filing the issue. We are working hard to get the "onboarding" as clear as possible and I saw the same issue and totally forgot to track it.
We recently added support for global shim and somehow the production mode slipped from our tests. I'll soon take a look into this.
@shalomvolchok just bear in mind that unless your project or one of your dependencies actually use global in the code, you should not be affected by this issue. In case you are, you can add var global=global||window; in any file that require use of global and it should work until we fix this issue.
When I run the full-example, in production mode, I get
Uncaught ReferenceError: global is not defined
in the browser. I saw recent discussion around this and it looks likeglobal.foo
was added tofooter.js
as a test case and that mendel added a default shim for global with c97a12e. But maybe I'm seeing that wrong and need to add it manually somewhere?The text was updated successfully, but these errors were encountered: