/
githubmirror
/
tabler
Обзор
Документация
Войти
/
githubmirror
/
tabler
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
docs/pages/robots.txt.ts
20 строк
497 B
Paweł Kuna
Migrate `preview` and `docs` packages from Eleventy to Astro (#2694)
28 июл 2026, 01:09
Не верифицирован
28 июл 2026, 01:09
d8956a0
Код
Авторство
О чём код?
import type { APIRoute } from 'astro'; import { site } from '@shared/lib/site'; export const prerender = true; export const GET: APIRoute = () => { const isProduction = (process.env.NODE_ENV || 'production') === 'production'; const sitemapUrl = `${isProduction ? site.docsUrl : ''}/sitemap.xml`; const body = `Sitemap: ${sitemapUrl} User-agent: * Disallow:${isProduction ? '' : ' /'} `; return new Response(body, { headers: { 'Content-Type': 'text/plain; charset=utf-8', }, }); };