My Next.js app keeps crashing in IE 11, and upon investigation I found out that the source of the issue was a direct call to Object.assign inside of valuesToParams.
It appears that there is an _extends function added for use of the object spread operator. Updating the statements to use the spread operator in place of Object.assign might be the simplest solution.
My Next.js app keeps crashing in IE 11, and upon investigation I found out that the source of the issue was a direct call to
Object.assign
inside ofvaluesToParams
.It appears that there is an _extends function added for use of the object spread operator. Updating the statements to use the spread operator in place of
Object.assign
might be the simplest solution.