blob: ad8e7ab9a0124e796c41a0805b8d56d42a984f1b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import curl from "../utils/curl.js"
import setStingRoute from "../utils/setStingRoute.js"
setStingRoute("/robots.txt", "robots.txt", async () => Object.entries({
"User-agent": "*",
Disallow: "",
Sitemap: curl("sitemap.xml")
}).map(([key, val]) => `${key}: ${val}`).join("\n")
)
|