From 2d1e04c9519b84b132e985cfe58037c8f11c88e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateus=20Felipe=20Gon=C3=A7alves?= Date: Tue, 4 Jul 2023 18:23:58 -0300 Subject: [PATCH] feat(seo): add post thumbnail path to robots.txt --- src/app/robots.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/robots.ts b/src/app/robots.ts index 9703d34c..9f53b45e 100644 --- a/src/app/robots.ts +++ b/src/app/robots.ts @@ -5,7 +5,7 @@ export default function robots(): MetadataRoute.Robots { return { rules: { userAgent: '*', - allow: '/' + allow: ['/', '/post/*/thumbnail'], }, sitemap: `${host}/sitemap.xml` }