diff --git a/src/constants.ts b/src/constants.ts index 5d89e05..ebe8d14 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -59,6 +59,10 @@ export const Constants = { 'x-powered-by': '🏳️‍⚧️ Trans Rights', 'cache-control': 'max-age=3600' // Can be overriden in some cases, like poll tweets }, + API_RESPONSE_HEADERS: { + 'access-control-allow-origin': '*', + 'content-type': 'application/json' + }, POLL_TWEET_CACHE: 'max-age=60', DEFAULT_COLOR: '#10A3FF', ROBOTS_TXT: `User-agent: * diff --git a/src/status.ts b/src/status.ts index a0d27e6..dcec5ae 100644 --- a/src/status.ts +++ b/src/status.ts @@ -37,7 +37,7 @@ export const handleStatus = async ( if (flags?.api) { return { response: new Response(JSON.stringify(api), { - headers: { ...Constants.RESPONSE_HEADERS, 'content-type': 'application/json' }, + headers: { ...Constants.RESPONSE_HEADERS, ...Constants.API_RESPONSE_HEADERS }, status: api.code }) };