We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4b75bc8 + 9638444 commit 79f3f6fCopy full SHA for 79f3f6f
src/lib/supported-browser.js
@@ -26,7 +26,9 @@ const supportedBrowser = () => {
26
* always returns false
27
*/
28
29
-const recommendedBrowser = () => !bowser.isUnsupportedBrowser(minVersions, true);
+const recommendedBrowser = () =>
30
+ !bowser.isUnsupportedBrowser(minVersions, true) ||
31
+ window.navigator.userAgent.toLowerCase().indexOf('googlebot') !== -1;
32
33
export {
34
supportedBrowser as default,
0 commit comments