I ran into Cannot set property 'enabled' of undefined after upgrading to Ember CLI 1.13.5. It appears app.options.fingerprint now isn't being set by Ember internally, hence the error. Apps can also work around the issue by adding fingerprint: {} when creating their EmberApp in ember-cli-build.js, but it would be nice not to have to do this.
I ran into
Cannot set property 'enabled' of undefined
after upgrading to Ember CLI 1.13.5. It appearsapp.options.fingerprint
now isn't being set by Ember internally, hence the error. Apps can also work around the issue by addingfingerprint: {}
when creating theirEmberApp
inember-cli-build.js
, but it would be nice not to have to do this.