๐Ÿ“ฆ cloudflare / vinext

๐Ÿ“„ page.tsx ยท 19 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19import type { Metadata } from "next";

export const metadata: Metadata = {
  robots: {
    index: false,
    follow: true,
    nocache: true,
    googleBot: {
      index: true,
      follow: false,
      noimageindex: true,
    },
  },
};

export default function Page() {
  return <div id="robots">Robots page</div>;
}