Fixed robots.txt not returning as text/plain

This commit is contained in:
dangered wolf 2022-07-24 19:11:00 -04:00
parent 3c99400297
commit 777f679d43
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -167,7 +167,10 @@ const cacheWrapper = async (event: FetchEvent): Promise<Response> => {
/* Itty-router doesn't seem to like routing file names for some reason */
if (cacheUrl.pathname === '/robots.txt') {
return new Response(Constants.ROBOTS_TXT, {
headers: Constants.RESPONSE_HEADERS,
headers: {
...Constants.RESPONSE_HEADERS,
'content-type': 'text/plain'
},
status: 200
});
}