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
this is why non ember-cli/embroider envs still need a build config (and build plugin). Not running our final build step will produce a very un-tested and dramatically different library with significantly degraded performance characteristics
At the moment, if debug data is not stripped from prod build, we have recursion error.
Given: Prod build,
assert
function is not stripped.Trying to access any key (
id
, for example) on just created model.This code part is executed:
data/packages/model/src/-private/attr.js
Line 130 in 7243558
And here we calling
toString
on record:data/packages/store/src/-private/caches/instance-cache.ts
Line 68 in 7243558
And we going here:
data/packages/model/src/-private/model.js
Line 501 in 7243558
Where we access
this.id
and here is GOTO: 1.The text was updated successfully, but these errors were encountered: