chore: dry up robots.txt templating

This commit is contained in:
Cory Dransfeldt 2024-02-01 12:31:43 -08:00
parent 29915a2e2c
commit 3edecfe47c
No known key found for this signature in database
4 changed files with 26 additions and 42 deletions

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "5.1.5",
"version": "5.2.5",
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module",
"scripts": {

17
src/_data/json/robots.js Normal file
View file

@ -0,0 +1,17 @@
export default [
'AdsBot-Google',
'Amazonbot',
'anthropic-ai',
'ArcMobile2',
'Bytespider',
'CCBot',
'ChatGPT-User',
'cohere-ai',
'FacebookBot',
'Google-Extended',
'GPTBot',
'omgili',
'Omgilibot',
'PerplexityBot',
'YouBot',
]

5
src/_data/robots.js Normal file
View file

@ -0,0 +1,5 @@
import robots from './json/robots.js'
export default async function () {
return robots
}

View file

@ -7,45 +7,7 @@ Sitemap: https://coryd.dev/sitemap.xml
User-agent: *
Disallow:
User-agent: AdsBot-Google
{% for robot in robots %}
User-agent: {{ robot }}
Disallow: /
User-agent: Amazonbot
Disallow: /
User-agent: anthropic-ai
Disallow: /
User-agent: Bytespider
Disallow: /
User-agent: CCBot
Disallow: /
User-agent: ChatGPT-User
Disallow: /
User-agent: cohere-ai
Disallow: /
User-agent: FacebookBot
Disallow: /
User-agent: Google-Extended
Disallow: /
User-agent: GPTBot
Disallow: /
User-agent: omgili
Disallow: /
User-agent: Omgilibot
Disallow: /
User-agent: PerplexityBot
Disallow: /
User-agent: YouBot
Disallow: /
{% endfor %}