Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow Googlebot and older browsers to render HeadProvider (#63)
* Allow Googlebot and older browsers to render HeadProvider Per [MDN](https://developer.mozilla.org/en-US/docs/Web/API/NodeList) the `NodeList` returned by `querySelectorAll` only supports `forEach` in modern browsers. The most notable browser missing off this list if Chromium ~41, which is the rendering ending that Googlebot is based on. By removing the `NodeList` `forEach` call, also per the MDN article, we can get Google rendering again. * Use old school way of node removal * Update size snapshot * Revert `remove` change * Add workaroudn explanation
- Loading branch information