diff --git a/src/lib/utils/metadata.ts b/src/lib/utils/metadata.ts index 7182be1132d..ebc12e94c64 100644 --- a/src/lib/utils/metadata.ts +++ b/src/lib/utils/metadata.ts @@ -136,6 +136,10 @@ export const getMetadata = async ({ }, } + if (SITE_URL !== "https://ethereum.org") { + return { ...base, robots: { index: false, follow: false } } + } + if (noIndex) { return { ...base, robots: { index: false } } }