From 6a1c171a3c046ce44f12a706203b59534567363f Mon Sep 17 00:00:00 2001 From: hamed Date: Sun, 28 Sep 2025 19:14:13 +0330 Subject: [PATCH] fix: update disallow rule in robots.txt to restrict access to /dashboard --- app/robots.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/robots.js b/app/robots.js index 877093b..7e4ec89 100644 --- a/app/robots.js +++ b/app/robots.js @@ -26,7 +26,7 @@ export default function robots() { rules: { userAgent: '*', allow: '/', - disallow: '/admin', + disallow: '/dashboard', }, sitemap: `${baseUrl}/sitemap.xml`, };