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
If possible please add "sideEffects": false, in package.json of core-js-pure package similar as it was done for lodash in this PR to let Webpack to tree-shake code. Webpack by default treats core-js-pure as it has side effects, but in reality it's side effect free ("pure"), so adding this flag will instruct Webpack to remove core-js-pure imports (in case they are not used further in code because of some conditions) leading to a smaller bundle size.