1
2
3
4
export default async function(req: Request) {
const body = (await fetch("https://live.staticflickr.com/65535/53782948438_9b85e57a6c_o_d.png")).body
return new Response(body, {headers: {"Content-Type": "image/png"}});
}