Recently I've upgraded the package @apollo/client to version 3.9.10 in my Ember app and this version is using the global function queueMicrotask which is not available in the default config of fastboot sandbox here:
When queueMicrotask is called, fastboot crashes because its is not defined.
I see setTimeout being set, but not queueMicrotask. Would it make sense to add it to the default sandbox?
Recently I've upgraded the package
@apollo/clientto version3.9.10in my Ember app and this version is using the global function queueMicrotask which is not available in the default config of fastboot sandbox here:ember-cli-fastboot/packages/fastboot/src/sandbox.js
Line 24 in 1e6ed03
When queueMicrotask is called, fastboot crashes because its is not defined.
I see
setTimeoutbeing set, but notqueueMicrotask. Would it make sense to add it to the default sandbox?