1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
export const GET = async ({ url }) => Response.json( await ( await fetch( `https://subsplease.org/api/?f=schedule&tz=${ url.searchParams.get('tz') || 'America/Los_Angeles' }` ) ).json(), { headers: { 'Cache-Control': 'max-age=86400', 'Access-Control-Allow-Origin': 'https://due.moe' } } );