Cloudflare Pages Functions TypeScript
/pixel.gif 요청에 빈 GIF로 응답하는 Cloudflare Pages Functions용 TypeScript 스니펫입니다. GIF는 시작할 때 한 번만 디코딩합니다.
Cloudflare Pages Functions TypeScript
// functions/pixel.gif.ts (the file path is the route)
const GIF = Uint8Array.from(atob('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='), (c) => c.charCodeAt(0));
export const onRequestGet: PagesFunction = () =>
new Response(GIF, {
headers: { 'Content-Type': 'image/gif', 'Cache-Control': 'no-store' },
});
이 스니펫은 실행해 보고, 반환된 바이트를 비교했습니다.
확인
curl -sI http://localhost:8080/pixel.gif
공식 사이트: Cloudflare Pages Functions