Files
website/src/pages/robots.txt.ts
Max Richter 6aa6ddabb0
All checks were successful
Deploy to SFTP Server / build (push) Successful in 4m0s
feat: add opentags
2025-02-18 16:23:51 +01:00

14 lines
294 B
TypeScript

import type { APIRoute } from 'astro';
const getRobotsTxt = (sitemapURL: URL) => `
User-agent: *
Allow: /
Sitemap: ${sitemapURL.href}
`;
export const GET: APIRoute = ({ site }) => {
const sitemapURL = new URL('sitemap-index.xml', site);
return new Response(getRobotsTxt(sitemapURL));
};