-
Notifications
You must be signed in to change notification settings - Fork 0
/
robots.ts
47 lines (45 loc) · 1013 Bytes
/
robots.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { MetadataRoute } from "next";
export const robots = (): MetadataRoute.Robots => {
return {
rules: [
{
userAgent: "*",
allow: ["/"],
disallow: "/private/",
},
{
userAgent: [
"AdsBot-Google",
"Amazonbot",
"Applebot",
"CCBot",
"GPTBot",
"ChatGPT-User",
"Anthropic-ai",
"ClaudeBot",
"Claude-Web",
"cohere-ai",
"DataForSeoBot",
"Omgilibot",
"Omgili",
"FacebookBot",
"FriendlyCrawler",
" Diffbot",
" Bytespider",
"PerplexityBot",
"ImagesiftBot",
"cohere-ai",
"img2dataset",
"ImagesiftBot",
"YouBot",
"Seekr",
"scoop.it",
],
disallow: ["/"],
},
],
sitemap: "https://sabrinamedwinter.com/sitemap.xml",
host: "https://sabrinamedwinter.com",
};
};
export default robots;