mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Fixed robots.txt not returning as text/plain
This commit is contained in:
parent
3c99400297
commit
777f679d43
1 changed files with 4 additions and 1 deletions
|
@ -167,7 +167,10 @@ const cacheWrapper = async (event: FetchEvent): Promise<Response> => {
|
||||||
/* Itty-router doesn't seem to like routing file names for some reason */
|
/* Itty-router doesn't seem to like routing file names for some reason */
|
||||||
if (cacheUrl.pathname === '/robots.txt') {
|
if (cacheUrl.pathname === '/robots.txt') {
|
||||||
return new Response(Constants.ROBOTS_TXT, {
|
return new Response(Constants.ROBOTS_TXT, {
|
||||||
headers: Constants.RESPONSE_HEADERS,
|
headers: {
|
||||||
|
...Constants.RESPONSE_HEADERS,
|
||||||
|
'content-type': 'text/plain'
|
||||||
|
},
|
||||||
status: 200
|
status: 200
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue