Files
porto/app/routes/robots.ts
T
bagas 9dd425b57f
Docker Build and Push / build-and-push (push) Successful in 5m38s
Mas rusdi pengen terkenal
2026-08-10 23:37:28 +07:00

18 lines
297 B
TypeScript

import { site } from "../seo"
export function loader() {
const body = [
"User-agent: *",
"Allow: /",
"",
`Sitemap: ${site.origin}/sitemap.xml`,
"",
].join("\n")
return new Response(body, {
headers: {
"Content-Type": "text/plain; charset=utf-8",
},
})
}