summaryrefslogtreecommitdiff
path: root/src/pages/robots.txt.ts
blob: c7e396f11d31320a2d72a2ec1445dcd747e57474 (plain)
1
2
3
4
5
6
7
8
9
10
11
import type { APIContext } from 'astro';

export async function get(context: APIContext) {
  return new Response(`
    User-agent: *
    User-agent: AdsBot-Google
    Disallow: */payment-success-confirmation

    Sitemap: ${context.site}sitemap-index.xml
  `);
}