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
Error in Component#send ReferenceError: FastBoot is not defined
Though this cannot be correct, as our Ember Application is NOT FastBoot enabled.
Culprit?
Also in Chrome Dev Tools - Sources I see a file named: fastboot-fetch.js
(function() {
define('fetch', ['exports'], function(self) {
var fetch = FastBoot.require('node-fetch');
self['default'] = fetch;
self['Headers'] = fetch.Headers;
self['Request'] = fetch.Request;
self['Response'] = fetch.Response;
});
define('fetch/ajax', ['exports'], function() {
throw new Error('You included `fetch/ajax` but it was renamed to `ember-fetch/ajax`');
});
})();
Our Context
We have not explicitly installed this ember-fetch package. Rather ember-fetch is a dependency upon ember-simple-auth, which we have explicitly npm installed.
We are using Ember Engines with lazyLoading enabled.
The true fix is likely ember-engines/ember-engines#490 (comment) but some discussion needs to happen before that can be resolved. Specifically around how the options are provided to ember-engines from the app engine(s).
I see the following error in my browser console:
Though this cannot be correct, as our Ember Application is NOT FastBoot enabled.
Culprit?
Also in Chrome Dev Tools - Sources I see a file named:
fastboot-fetch.js
Our Context
We have not explicitly installed this
ember-fetch
package. Ratherember-fetch
is a dependency uponember-simple-auth
, which we have explicitly npm installed.We are using Ember Engines with lazyLoading enabled.
Similar Issue
The GitHub Repo
ember-cli-moment-shim
had a similar issue:Issue: jasonmit/ember-cli-moment-shim#145
Fix: jasonmit/ember-cli-moment-shim@591ae7a
The text was updated successfully, but these errors were encountered: