From d60a582347a5df74ab76bf43d0d3c8600cbc8947 Mon Sep 17 00:00:00 2001 From: andreas Date: Fri, 22 Sep 2023 17:03:00 +0200 Subject: [PATCH] Make reflector.media not indexable by search engines --- www/app/layout.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/www/app/layout.tsx b/www/app/layout.tsx index 9742f1d4..168ef820 100644 --- a/www/app/layout.tsx +++ b/www/app/layout.tsx @@ -52,6 +52,8 @@ export const metadata: Metadata = { initialScale: 1, maximumScale: 1, }, + + robots: { index: false, follow: false, noarchive: true, noimageindex: true } }; export default function RootLayout({ children }) {