UNPKG

@penjc/homepage

Version:

个人主页模板,支持博客、随笔等功能

22 lines (18 loc) 426 B
import { siteConfig } from '@/site.config'; export async function GET() { const robotsTxt = `User-agent: * Allow: / # Sitemaps Sitemap: ${siteConfig.url}/sitemap.xml # Disallow specific paths if needed Disallow: /api/ Disallow: /_next/ Disallow: /.git/ `; return new Response(robotsTxt, { headers: { 'Content-Type': 'text/plain; charset=utf-8', 'Cache-Control': 'public, max-age=86400', }, }); }