From 246c28823d8d2ada7b5c4a21b84d5a059609ea46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Famibelle-Pronzola?= Date: Sat, 22 Jul 2023 13:08:50 +0400 Subject: [PATCH] Add robots.js to app --- app/robots.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 app/robots.js diff --git a/app/robots.js b/app/robots.js new file mode 100644 index 0000000..c7a7c16 --- /dev/null +++ b/app/robots.js @@ -0,0 +1,9 @@ +export default function robots() { + return { + rules: { + userAgent: '*', + allow: '/', + }, + sitemap: 'https://oki.re/sitemap.xml', + } +}