...
const res = await fetch(
`https://docs.google.com/spreadsheets/d/${env.GSHEET_ID}/export?format=csv&gid=${env.GSHEET_GID}`,
{
cf: { cacheTtl: 600 }, // also tried cacheEverything -- didn't help and docs say it's redundant.
}
);
return new Response(...)
...
...
const res = await fetch(
`https://docs.google.com/spreadsheets/d/${env.GSHEET_ID}/export?format=csv&gid=${env.GSHEET_GID}`,
{
cf: { cacheTtl: 600 }, // also tried cacheEverything -- didn't help and docs say it's redundant.
}
);
return new Response(...)
...