18 lines
297 B
TypeScript
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",
|
|
},
|
|
})
|
|
}
|