How to smooth an OBJ with threejs?

After v125 I had the same issue and solved it with the following:

child.geometry.deleteAttribute(‘normal’);
child.geometry = mergeVertices(child.geometry);
child.geometry.computeVertexNormals(child.geometry);

without .deleteAttribute(‘normal’) there was no effect from mergeVerticies or computeVertexNormals.