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
BREAKING CHANGE
Because of the removal of the animations dependency, the NoopAnimationsModule is no longer automatically imported in the render.
BEFORE:
The NoopAnimationsModule was always imported to the render.
AFTER:
Import the NoopAnimationsModule where needed, or configure the default imports using configure:
` s
configure({
defaultImports: [NoopAnimationsModule],
});
`
0 commit comments