We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am getting this error since Meteor 1.5 no longer automatically makes the Buffer polyfill available on the client.
I was able to resolve it by adding this code:
global.Buffer = function() {} global.Buffer.isBuffer = () => false
But it seems deep-extend is not designed to be used on the client side, see this issue.
deep-extend
Thank you!
The text was updated successfully, but these errors were encountered:
Thanks, we will need to find a replacement
Sorry, something went wrong.
18a6b6b
No branches or pull requests
I am getting this error since Meteor 1.5 no longer automatically makes the Buffer polyfill available on the client.
I was able to resolve it by adding this code:
But it seems
deep-extend
is not designed to be used on the client side, see this issue.Thank you!
The text was updated successfully, but these errors were encountered: