18 lines
346 B
TypeScript
18 lines
346 B
TypeScript
import { site } from "../seo"
|
|
|
|
export function loader() {
|
|
const body = `<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
<url>
|
|
<loc>${site.url}</loc>
|
|
</url>
|
|
</urlset>
|
|
`
|
|
|
|
return new Response(body, {
|
|
headers: {
|
|
"Content-Type": "application/xml; charset=utf-8",
|
|
},
|
|
})
|
|
}
|