emptygif
언어: 한국어

모든 언어 및 프레임워크

Vercel Functions TypeScript

/pixel.gif 요청에 빈 GIF로 응답하는 Vercel Functions용 TypeScript 스니펫입니다. GIF는 시작할 때 한 번만 디코딩합니다.

Vercel Functions TypeScript

파일
pixel.ts
실행
vercel dev
// api/pixel.ts - served at /api/pixel; map /pixel.gif to it in vercel.json:
//   { "rewrites": [{ "source": "/pixel.gif", "destination": "/api/pixel" }] }
// (In a Next.js project use an App Router route handler instead.)
const GIF = Uint8Array.from(atob('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='), (c) => c.charCodeAt(0));

export function GET() {
  return new Response(GIF, {
    headers: { 'Content-Type': 'image/gif', 'Cache-Control': 'no-store' },
  });
}

이 스니펫은 컴파일하거나 타입 검사했습니다.

확인

curl -sI http://localhost:8080/pixel.gif

공식 사이트: Vercel Functions

TypeScript의 다른 예제