From 629a634b22cf270b3cb362837dace48fd08bc87d Mon Sep 17 00:00:00 2001 From: evazion Date: Fri, 3 Jul 2020 14:46:32 -0500 Subject: [PATCH] seo: don't block css in robots.txt. /packs was blocked by robots.txt, which prevented Googlebot from fetching CSS when indexing pages, which made Google penalize pages for being mobile unfriendly because it couldn't load the CSS and it thought the layout was broken. --- app/views/robots/index.text.erb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/views/robots/index.text.erb b/app/views/robots/index.text.erb index 1f9ebe910..59b141a27 100644 --- a/app/views/robots/index.text.erb +++ b/app/views/robots/index.text.erb @@ -44,4 +44,6 @@ Allow: /preview Allow: /original Allow: /sample Allow: /data +Allow: /images +Allow: /packs <% end %>